/* ═══════════════════════════════════════════════════════
   XINOBI LANDING PAGE — DESIGN SYSTEM
   ═══════════════════════════════════════════════════════ */

:root {
  /* ─── Colors ─── */
  --bg-primary: #f9fafb;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f3f4f6;
  --bg-elevated: #f3f4f6;

  --text-primary: #111827;
  --text-secondary: #374151;
  --text-muted: #6b7280;

  --accent-start: #f97316;
  --accent-end: #ef4444;
  --accent-gradient: linear-gradient(135deg, var(--accent-start), var(--accent-end));

  --teal: #0d9488;
  --teal-dim: rgba(13, 148, 136, 0.08);
  --blue: #2563eb;
  --purple: #7c3aed;
  --green: #16a34a;
  --yellow: #ca8a04;
  --red: #dc2626;

  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.15);

  /* ─── Typography ─── */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* ─── Spacing ─── */
  --section-y: 7rem;
  --container-max: 1200px;
  --container-px: 1.5rem;

  /* ─── Radius ─── */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* ─── Transitions ─── */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* ─── Shadows ─── */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 60px rgba(249, 115, 22, 0.08);
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════ */

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

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-header-left {
  text-align: left;
  margin-left: 0;
  max-width: 600px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.section-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--teal-dim);
  color: var(--teal);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 4px 24px rgba(249, 115, 22, 0.5);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  border-color: var(--text-muted);
  background: rgba(255,255,255,0.03);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: none;
  padding-left: 0;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

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

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-base);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-primary);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  background: var(--accent-gradient);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  color: #fff;
}

.logo-text {
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
}

.nav-links a.active {
  color: var(--accent-start);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#navDemoBtn, #navAccessBtn {
  display: none;
}

#navDemoBtn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

#navAccessBtn {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav open state */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.nav-links.open a {
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  #navDemoBtn, #navAccessBtn {
    display: inline-flex;
  }
  .mobile-toggle {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-start);
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-visual {
  display: block;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.hero-image-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100px;
  background: radial-gradient(ellipse, rgba(249,115,22,0.15) 0%, transparent 70%);
  filter: blur(40px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}

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

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
  .hero-visual {
    display: block;
  }
}

/* ═══════════════════════════════════════════════════════
   BUILT FOR EVERY OUTLET
   ═══════════════════════════════════════════════════════ */

.built-for {
  padding: var(--section-y) 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}

.outlets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.outlet-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
  text-align: left;
}

.outlet-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.outlet-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  width: 4rem;
  height: 4rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.outlet-card:hover .outlet-icon {
  background: var(--bg-secondary);
  border-color: var(--accent-start);
  transform: scale(1.05);
}

.outlet-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

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

@media (min-width: 640px) {
  .outlets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .outlets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════ */

.features {
  padding: var(--section-y) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: var(--radius-md);
  color: var(--accent-start);
  margin-bottom: 1.25rem;
}

.feature-icon.icon-red {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.15);
  color: var(--red);
}

.feature-icon.icon-blue {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.15);
  color: var(--blue);
}

.feature-icon.icon-green {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.15);
  color: var(--green);
}

.feature-icon.icon-yellow {
  background: rgba(234, 179, 8, 0.08);
  border-color: rgba(234, 179, 8, 0.15);
  color: var(--yellow);
}

.feature-icon.icon-purple {
  background: rgba(167, 139, 250, 0.08);
  border-color: rgba(167, 139, 250, 0.15);
  color: var(--purple);
}

.feature-icon.icon-teal {
  background: rgba(45, 212, 191, 0.08);
  border-color: rgba(45, 212, 191, 0.15);
  color: var(--teal);
}

.features-grid-main {
  margin-bottom: 1.5rem;
}

.feature-card-large {
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.feature-card > p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.feature-list li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════
   PRODUCTS (Tabbed Section)
   ═══════════════════════════════════════════════════════ */

.products {
  padding: var(--section-y) 0;
  background: var(--bg-secondary);
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .tab-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }
  .tab-nav::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }
  .tab-btn {
    flex-shrink: 0;
  }
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

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

.tab-btn.active {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #fff;
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

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

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

.tab-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.product-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent-start);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.product-badge.management { background: rgba(59,130,246,0.1); color: var(--blue); }
.product-badge.staff { background: rgba(167,139,250,0.1); color: var(--purple); }
.product-badge.kds { background: rgba(239,68,68,0.1); color: var(--red); }
.product-badge.store { background: rgba(34,197,94,0.1); color: var(--green); }

.tab-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.tab-info > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.check {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
}

.tech-stack {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.tech-stack strong {
  color: var(--text-secondary);
}

/* ─── Product Visuals ─── */
.tab-visual {
  display: none;
}

.app-preview {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Consumer Preview */
.preview-phone {
  width: 260px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border-radius: 28px;
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.phone-notch {
  width: 80px;
  height: 20px;
  background: #0a0a0f;
  border-radius: 0 0 12px 12px;
}

.phone-screen {
  padding: 0.75rem;
}

.screen-app-bar {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table-tag {
  background: rgba(45, 212, 191, 0.15);
  color: var(--teal);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 600;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.menu-item-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.menu-item-img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  position: relative;
}

.menu-item-img.veg {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.menu-item-img.veg::after {
  content: '●';
  color: var(--green);
  font-size: 0.75rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-item-img.non-veg {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.menu-item-img.non-veg::after {
  content: '▲';
  color: var(--red);
  font-size: 0.6rem;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-item-details {
  flex: 1;
}

.menu-item-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
}

.menu-item-price {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.menu-add-btn {
  background: transparent;
  border: 1px solid var(--accent-start);
  color: var(--accent-start);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.menu-add-btn.added {
  background: var(--accent-start);
  color: #fff;
  border-color: var(--accent-start);
}

.phone-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--accent-gradient);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.phone-view-cart {
  font-size: 0.7rem;
  opacity: 0.95;
}

/* Management Preview */
.preview-dashboard {
  display: flex;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-lg);
}

.dash-sidebar {
  width: 56px;
  background: var(--bg-primary);
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-right: 1px solid var(--border);
}

.dash-sidebar-item {
  width: 100%;
  height: 32px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
}

.dash-sidebar-item.active {
  background: var(--accent-gradient);
}

.dash-main {
  flex: 1;
  padding: 1rem;
}

.dash-header {
  height: 24px;
  width: 50%;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  margin-bottom: 1rem;
}

.dash-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.dash-stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem;
  font-size: 0.6rem;
  color: var(--text-muted);
  text-align: center;
}

.dash-stat-card span {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.dash-stat-card.highlight span {
  color: var(--red);
}

.dash-chart {
  height: 100px;
  background: linear-gradient(180deg, rgba(45,212,191,0.05) 0%, transparent 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.dash-chart::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(45,212,191,0.15) 10%,
    rgba(45,212,191,0.3) 25%,
    rgba(45,212,191,0.15) 40%,
    rgba(45,212,191,0.25) 55%,
    rgba(45,212,191,0.35) 70%,
    rgba(45,212,191,0.2) 85%,
    transparent 100%
  );
  clip-path: polygon(0 80%, 5% 60%, 15% 70%, 25% 30%, 35% 50%, 45% 20%, 55% 40%, 65% 15%, 75% 35%, 85% 10%, 95% 25%, 100% 40%, 100% 100%, 0 100%);
}

/* Staff Preview */
.preview-tablet {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  overflow: hidden;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

.tablet-bar {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

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

.table-tile {
  padding: 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-primary);
  border: 2px solid;
}

.table-tile small {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  margin-top: 4px;
  opacity: 0.8;
}

.table-tile.vacant { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.3); }
.table-tile.occupied { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.3); }
.table-tile.kot { background: rgba(234,179,8,0.1); border-color: rgba(234,179,8,0.3); }
.table-tile.billing { background: rgba(167,139,250,0.1); border-color: rgba(167,139,250,0.3); }

/* KDS Preview */
.preview-kds {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.kds-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--bg-primary);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}

.kds-count {
  background: var(--blue);
  padding: 0.15rem 0.6rem;
  border-radius: 100px;
  font-size: 0.7rem;
  color: #fff;
}

.kds-tickets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.75rem;
}

.kds-ticket {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  border: 2px solid;
  padding: 0.6rem;
  font-size: 0.75rem;
}

.kds-ticket.green { border-color: rgba(34,197,94,0.5); }
.kds-ticket.yellow { border-color: rgba(234,179,8,0.5); }
.kds-ticket.red { border-color: rgba(239,68,68,0.5); animation: ticketPulse 2s infinite; }

@keyframes ticketPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.2); }
  50% { box-shadow: 0 0 12px 4px rgba(239,68,68,0.15); }
}

.ticket-head {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  display: flex;
  justify-content: space-between;
}

.ticket-head small {
  color: var(--text-muted);
  font-weight: 400;
}

.ticket-item {
  padding: 0.2rem 0;
  color: var(--text-secondary);
}

.ticket-item.special {
  color: var(--yellow);
  font-weight: 600;
}

.ticket-action {
  margin-top: 0.5rem;
  padding: 0.3rem;
  text-align: center;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(34,197,94,0.1);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.2);
}

.ticket-action.preparing {
  background: rgba(234,179,8,0.1);
  color: var(--yellow);
  border-color: rgba(234,179,8,0.2);
}

.ticket-action.overdue {
  background: rgba(239,68,68,0.15);
  color: var(--red);
  border-color: rgba(239,68,68,0.3);
  animation: ticketPulse 1.5s infinite;
}

/* Store PWA Preview */
.preview-pwa {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  overflow: hidden;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

.pwa-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pwa-status.online {
  background: rgba(34,197,94,0.08);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.2);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.pwa-stat {
  text-align: center;
  padding: 0.75rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.pwa-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.pwa-stat span:last-child {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.pwa-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.pwa-action-btn {
  padding: 0.6rem;
  text-align: center;
  background: rgba(249,115,22,0.06);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .tab-body {
    grid-template-columns: 1fr 1fr;
  }
  .tab-visual {
    display: block;
  }
}

/* ═══════════════════════════════════════════════════════
   INTEGRATIONS
   ═══════════════════════════════════════════════════════ */

.integrations {
  padding: var(--section-y) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.why-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

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

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: var(--radius-md);
  color: var(--accent-start);
  margin-bottom: 1.25rem;
}

.why-icon.icon-teal {
  background: rgba(45, 212, 191, 0.08);
  border-color: rgba(45, 212, 191, 0.15);
  color: var(--teal);
}

.why-icon.icon-blue {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.15);
  color: var(--blue);
}

.why-icon.icon-green {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.15);
  color: var(--green);
}

@media (min-width: 640px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Cost Banner */
.cost-banner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.cost-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
}

.cost-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.cost-percent {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.cost-text {
  display: block;
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.cost-details {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.cost-item-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.cost-item-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.cost-item-price.strikethrough {
  text-decoration: line-through;
  color: var(--text-muted);
}

.cost-vs {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

@media (min-width: 768px) {
  .cost-banner-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ═══════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════ */

.pricing {
  padding: var(--section-y) 0;
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition-base);
}

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

.pricing-card.popular {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.08);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1.25rem;
  background: var(--accent-gradient);
  color: #fff;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-header h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.pricing-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.amount {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════ */

.cta {
  padding: var(--section-y) 0;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-content > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.cta-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.cta-form input {
  padding: 0.85rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.cta-form input::placeholder {
  color: var(--text-muted);
}

.cta-form input:focus {
  border-color: var(--accent-start);
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.footer-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--text-primary);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer-simple {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    width: 100%;
  }
  .footer-nav {
    gap: 2.5rem;
  }
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS & UTILITY
   ═══════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth scroll padding for fixed nav */
section[id] {
  scroll-margin-top: 5rem;
}

/* Selection color */
::selection {
  background: rgba(249, 115, 22, 0.3);
  color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════════════════
   SUBPAGE & MOCKUP STYLES
   ═══════════════════════════════════════════════════════ */

.subpage-hero {
  position: relative;
  padding: 8rem 0 4rem;
  background: radial-gradient(circle at top, rgba(249, 115, 22, 0.05) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.subpage-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.subpage-hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-start);
  transition: transform var(--transition-fast);
}

.back-home:hover {
  transform: translateX(-4px);
}

.subpage-content {
  padding: 5rem 0;
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 6rem;
}

.feature-detail-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.feature-detail-info h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
}

.feature-detail-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.feature-group-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-group-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-group-icon {
  width: 1.75rem;
  height: 1.75rem;
  background: var(--teal-dim);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-group-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

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

.feature-mockup-wrapper {
  position: sticky;
  top: 6rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card);
  padding: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(249, 115, 22, 0.05);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.feature-mockup-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(249, 115, 22, 0.1);
}

.feature-mockup-wrapper img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.feature-highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.highlight-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.highlight-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (min-width: 1024px) {
  .feature-detail-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .feature-highlight-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-custom-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 2.25rem;
  display: block;
}

/* ─── DROPDOWN MENU NAVIGATION ─── */
.nav-links li {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 1001;
  margin: 0;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block !important;
  padding: 0.65rem 1.25rem !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  color: var(--text-secondary) !important;
  transition: background var(--transition-fast), color var(--transition-fast) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.dropdown-menu a:hover {
  background: var(--bg-card-hover) !important;
  color: var(--accent-start) !important;
}

.arrow {
  font-size: 0.65rem;
  margin-left: 3px;
  display: inline-block;
  transition: transform var(--transition-fast);
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 1rem;
    min-width: 0;
    display: none;
  }
  
  .dropdown:hover .dropdown-menu,
  .dropdown.open .dropdown-menu {
    display: block;
  }
}

