@charset "UTF-8";
/* line 1, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
:root {
  --primary-color: #f36e26;
  --primary-hover: #d85c1a;
  --secondary-color: #64748b;
  --dark-color: #0f172a;
  --light-color: #f8fafc;
  --white-color: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md:
      0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:
      0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --border-radius: 0.75rem;
}

/* General Body Styling */
/* line 18, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* line 26, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
html {
  scroll-behavior: smooth;
}

/* line 30, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--white-color);
  color: var(--dark-color);
  line-height: 1.7;
  font-size: 16px;
}

/* line 38, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
ol,
ul {
  padding-left: 0;
}

/* Container for centered content */
/* line 44, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Styling */
/* line 51, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
section {
  padding: 96px 0;
}

/* line 55, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* line 60, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.section-tagline {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* line 68, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* line 75, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.section-subtitle {
  font-size: 1.125rem;
  color: var(--secondary-color);
  max-width: 650px;
  margin: 0 auto;
}

/* line 82, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.page-header {
  padding-top: 160px;
  padding-bottom: 80px;
  background-color: var(--light-color);
  text-align: center;
}

/* line 88, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* line 93, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.page-subtitle {
  font-size: 1.125rem;
  color: var(--secondary-color);
  max-width: 650px;
  margin: 0 auto;
}

/* Scroll Animation */
/* line 101, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: var(--delay, 0s);
}

/* line 109, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Button Styles */
/* line 115, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

/* line 128, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: var(--shadow-md);
}

/* line 134, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* line 140, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: #f36e26;
  border-color: #f36e26;
  opacity: var(--bs-btn-disabled-opacity);
}

/* line 150, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.btn:hover {
  cursor: pointer;
}

/* line 154, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

/* line 160, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* line 165, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* Navigation Bar */
/* line 171, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
  /* Ensures it stays on top of other content */
  /* Add a smooth transition for the background color change */
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* line 185, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Required for Safari support */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* line 192, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  transition: height 0.3s ease;
}

/* line 203, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.nav-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-color);
}

/* line 208, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.nav-brand span {
  color: var(--primary-color);
}

/* line 212, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin-bottom: 0;
}

/* line 219, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* line 225, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.nav-link {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

/* line 232, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.nav-link:hover {
  color: var(--primary-color);
}

/* line 236, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.nav-actions .btn {
  width: auto;
}

/* line 240, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.hamburger {
  display: none;
  cursor: pointer;
}

/* line 245, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--dark-color);
  transition: all 0.3s ease-in-out;
}

/* line 254, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.nav-item.dropdown {
  position: relative;
}

/* line 258, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background-color: #fffffff8;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  z-index: 1000;
  margin-top: 8px;
}
/* line 272, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.dropdown-menu .dropdown-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
/* line 278, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: transparent;
}

/* Desktop-only hover effects */
@media (min-width: 769px) {
  /* line 291, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .nav-item.dropdown:hover > .dropdown-menu,
  .dropdown-menu:hover {
    display: block;
  }

  /* line 296, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .nav-item.dropdown:hover .nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
  }

  /* line 300, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .dropdown-item:hover {
    background-color: #f8fafc;
    color: var(--primary-color);
    transform: translateX(4px);
  }
}
/* Mobile: Only show dropdown when active class is present */
@media (max-width: 768px) {
  /* line 309, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .dropdown-menu.active {
    display: block;
  }

  /* line 313, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .dropdown-item:hover {
    transform: none;
    background-color: #e2e8f0;
  }
}
/* Styles for the links inside the dropdown */
/* line 320, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--dark-color);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  font-weight: 500;
}
/* line 331, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.dropdown-item i {
  width: 20px;
  text-align: center;
  color: var(--primary-color);
  font-size: 1rem;
}
/* line 338, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.dropdown-item .item-text {
  flex: 1;
}
/* line 342, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.dropdown-item .item-description {
  display: block;
  font-size: 0.875rem;
  color: var(--secondary-color);
  font-weight: normal;
  margin-top: 2px;
}

/* line 351, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.nav-link.dropdown-toggle::after {
  content: " ▾";
  font-size: 0.8rem;
  margin-left: 4px;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease;
  border: none !important;
}

/* line 362, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.why-qikbite-section {
  background-color: #ffffff;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* line 367, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.section-header {
  text-align: center;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

/* line 374, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* line 379, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.section-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
}

/* line 383, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.feature-grid {
  display: grid;
  gap: 2rem;
}

/* line 387, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.feature-card {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
}

/* line 394, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* line 399, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.feature-card p {
  color: #4b5563;
}

/* Hero Section */
/* line 404, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  background-color: transparent;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease-out;
}

/* line 418, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.hero .position-absolute {
  transform: scale(1.15);
  will-change: transform, opacity;
}

/* line 423, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* line 433, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.hero-title .highlight {
  color: var(--primary-color);
}

/* line 437, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--white-color);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* line 446, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}

/* line 453, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.hero-actions .btn {
  width: auto;
}

/* line 457, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.hero-image-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

/* line 463, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.hero-image-container .phone-mockup {
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

/* Image floating design */
/* line 470, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.img-fancy-wrapper {
  perspective: 500px;
}

/* line 474, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.img-fancy {
  max-width: 100%;
  height: 350px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* line 482, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.img-fancy-tilt-right {
  transform: rotateY(-7deg) rotateX(3deg);
}

/* line 486, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.img-fancy-tilt-left {
  transform: rotateY(7deg) rotateX(3deg);
}

/* line 490, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.img-fancy:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

/* line 495, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.img-fancy-tilt-right:hover {
  transform: translateY(-12px) scale(1.03) rotateY(-7deg) rotateX(3deg);
}

/* line 499, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.img-fancy-tilt-left:hover {
  transform: translateY(-12px) scale(1.03) rotateY(7deg) rotateX(3deg);
}

/* Features Section */
/* line 504, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
#features-showcase {
  background-color: var(--light-color);
}

/* line 507, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

/* line 513, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.feature-card {
  background: var(--white-color);
  padding: 32px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

/* line 521, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* line 526, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.feature-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 24px;
  background-color: #fff7ed;
  width: 64px;
  height: 64px;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 539, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* line 545, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.feature-description {
  color: var(--secondary-color);
}

/* line 549, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.feature-1,
.feature-2 {
  margin-bottom: 10rem;
}

/* How it Works Section */
/* line 555, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.how-it-works {
  background-color: var(--light-color);
}

/* line 558, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-top: 80px;
}

/* line 564, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.step-card-m {
  text-align: center;
  position: relative;
}

/* line 568, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.step-card-m::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -24px;
  width: 115%;
  height: 2px;
  background-image: linear-gradient(to right, var(--border-color) 50%, transparent 50%);
  background-size: 16px 2px;
  background-repeat: repeat-x;
}

/* line 583, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.step-number-main {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff7ed;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 24px;
  border: 2px solid var(--white-color);
  box-shadow: 0 0 0 4px #fff7ed;
}

/* line 598, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* line 603, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.step-description {
  color: var(--secondary-color);
}

/* line 606, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.step-card-m-action {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}

/* line 613, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.step-card-m-action .btn {
  width: auto;
}

/* Step Cards */
/* line 618, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 10px 20px rgba(243, 110, 38, 0.3);
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
}

/* line 640, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.step-card:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(243, 110, 38, 0.4);
}

/* line 645, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.step-card {
  padding: 3rem;
  border: none;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background-color: var(--white-color);
  margin-bottom: 6rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

/* line 657, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

/* line 674, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.step-card:hover::before {
  transform: scaleX(1);
}

/* line 678, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Visual Showcase Section */
/* line 687, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

/* line 693, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.showcase-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

/* line 698, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.showcase-content p {
  color: var(--secondary-color);
  margin-bottom: 24px;
}

/* line 702, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.showcase-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

/* line 707, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.showcase-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

/* line 713, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.showcase-list i {
  color: var(--primary-color);
}

/* line 716, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.showcase-image-container {
  position: relative;
}

/* line 719, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.pos-mockup {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

/* CTA Section */
/* line 726, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.cta {
  background: linear-gradient(45deg, var(--primary-color), #fd8c4a);
  color: var(--white-color);
  text-align: center;
  border-radius: var(--border-radius);
  padding: 80px 40px;
}

/* line 733, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.cta .cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* line 738, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.cta .cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* line 744, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.cta .btn-white {
  background-color: var(--white-color);
  color: var(--primary-color);
  width: auto;
}

/* line 749, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.cta .btn-white:hover {
  background-color: var(--light-color);
}

/* Pricing Section */
/* line 754, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
#pricing {
  background-color: var(--light-color);
}

/* line 757, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
}

/* line 763, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.pricing-card {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* line 774, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.pricing-card-header {
  flex-grow: 0;
}

/* line 777, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.pricing-card-body {
  flex-grow: 1;
}

/* line 780, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.pricing-card-footer {
  flex-grow: 0;
}

/* line 783, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.plan-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* line 788, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.plan-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

/* line 794, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary-color);
}

/* line 799, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.plan-description {
  color: var(--secondary-color);
  margin-bottom: 32px;
  min-height: 48px;
}

/* line 804, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.features-list {
  list-style: none;
  text-align: left;
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

/* line 811, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* line 816, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.features-list i {
  color: #03bd3b;
  margin-top: 5px;
}

/* line 820, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.pricing-card.featured {
  transform: scale(1.05);
  border-color: var(--primary-color);
  border-width: 2px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* line 828, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.featured-badge {
  position: absolute;
  top: 20px;
  right: -45px;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 6px 40px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  transform: rotate(45deg);
}

/* Form Styling */
/* line 842, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.form-container {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 48px;
  margin-bottom: 96px;
}

/* line 850, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.form-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

/* line 856, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* line 862, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--primary-color);
}

/* line 869, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--dark-color);
}

/* line 876, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.form-control,
.form-select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* line 887, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(243, 110, 38, 0.2);
}

/* line 894, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

/* line 900, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.required-field::after {
  content: "*";
  color: #e32;
  margin-left: 4px;
}

/* Footer */
/* line 907, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.footer {
  background-color: var(--dark-color);
  color: var(--secondary-color);
  padding: 80px 0 32px;
}

/* line 912, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

/* line 918, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.footer-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 16px;
  display: block;
}

/* line 925, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.footer-brand span {
  color: var(--primary-color);
}

/* line 928, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.footer-description {
  max-width: 300px;
  margin-bottom: 24px;
}

/* line 932, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.footer-social {
  display: flex;
  gap: 16px;
}

/* line 936, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.footer-social a {
  color: var(--secondary-color);
  font-size: 1.25rem;
  transition: color 0.3s;
}

/* line 941, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.footer-social a:hover {
  color: var(--primary-color);
}

/* line 944, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 952, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.footer-links {
  list-style: none;
  display: grid;
  gap: 12px;
}

/* line 957, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.footer-links a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: color 0.3s;
}

/* line 962, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.footer-links a:hover {
  color: var(--white-color);
}

/* line 965, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 32px;
  text-align: center;
}

/* line 971, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
#ordering-steps {
  background: var(--bg-light);
  /* We add extra padding at the bottom for the scroll effect */
  padding-bottom: 200px;
}

/* line 976, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.steps-layout-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
}

/* line 982, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.steps-content-scrolling {
  /* This column will scroll */
  grid-column: 1 / 2;
}

/* line 986, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.step-trigger {
  /* Each text block needs height to trigger the scroll */
  min-height: 500px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

/* This class will be added by JS */
/* line 997, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.step-trigger.is-in-view {
  opacity: 1;
}

/* line 1000, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.step-number {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary-color);
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

/* line 1014, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.step-trigger h3 {
  margin-bottom: 5px;
}

/* line 1018, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.steps-visual-sticky {
  /* This column will stick */
  grid-column: 2 / 3;
  position: sticky;
  top: 150px;
  /* Stick 120px from the top */
  height: 600px;
  /* Needs a defined height */
}

/* line 1025, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.visual-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

/* line 1034, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.visual-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* line 1046, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.visual-item.active {
  opacity: 1;
  visibility: visible;
}

/* line 1050, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.visual-item img {
  width: auto;
  height: auto;
  object-fit: cover;
}

/* line 1055, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  padding: 40px 20px 20px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-heading);
  margin: 0;
}

/* Progress indicator */
/* line 1071, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(243, 110, 38, 0.1);
  z-index: 1000;
}

/* line 1081, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
  width: 0%;
  transition: width 0.3s ease;
}

/* line 1093, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
}

/* line 1102, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.auth-container {
  width: 100%;
  max-width: 480px;
  perspective: 1000px;
}

/* line 1108, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.auth-card {
  background: var(--white-color);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  padding: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(243, 110, 38, 0.1);
}

/* line 1118, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

/* line 1123, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.auth-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* line 1129, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.auth-subtitle {
  color: var(--secondary-color);
  font-size: 0.95rem;
}

/* line 1134, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.highlight {
  color: var(--primary-color);
}

/* Tabs */
/* line 1139, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.auth-tabs {
  display: flex;
  position: relative;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 32px;
}

/* line 1148, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.auth-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px;
  font-weight: 600;
  color: var(--secondary-color);
  z-index: 2;
  cursor: pointer;
  transition: color 0.3s;
}

/* line 1160, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.auth-tab.active {
  color: var(--primary-color);
}

/* line 1164, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.tab-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

/* Forms */
/* line 1178, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.auth-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

/* line 1183, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.auth-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* line 1192, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.modern-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Floating Labels */
/* line 1199, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.form-floating {
  position: relative;
}

/* line 1203, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.form-input {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  background: transparent;
  transition: all 0.3s;
}

/* line 1214, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(243, 110, 38, 0.1);
}

/* line 1219, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.form-floating label {
  position: absolute;
  height: auto;
  left: 16px;
  transform: translateY(-50%);
  color: var(--secondary-color);
  pointer-events: none;
  transition: all 0.2s;
  background: var(--white-color);
  padding: 0 4px;
}

/* Move label up on focus or if value exists */
/* line 1232, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.form-input:focus ~ label,
.form-input:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
}

/* line 1240, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: -10px;
}

/* line 1246, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.forgot-password {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 0.9rem;
}

/* line 1252, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.forgot-password:hover {
  color: var(--primary-color);
}

/* line 1256, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
.btn-block {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  /* line 1267, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .showcase-container {
    grid-template-columns: 1fr;
  }

  /* line 1270, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .showcase-image-container {
    grid-row: 1;
  }

  /* line 1273, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .showcase-content {
    text-align: center;
  }

  /* line 1276, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .showcase-list {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  /* line 1281, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .btn {
    display: inline-block;
    padding: 0px 15px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 769px) {
  /* line 1296, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .mobile-actions {
    display: none;
  }

  /* Multi-column layout for larger dropdowns */
  /* line 1301, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .nav-item.dropdown:nth-child(1) .dropdown-content,
  .nav-item.dropdown:nth-child(2) .dropdown-content {
    /* Solutions, Products */
    grid-template-columns: repeat(2, 1fr);
    min-width: 400px;
  }
}
@media (max-width: 768px) {
  /* line 1310, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .section-title,
  .hero-title,
  .cta-title {
    font-size: 2.25rem;
  }

  /* line 1316, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 72px;
    flex-direction: column;
    background-color: var(--white-color);
    width: 100%;
    height: calc(100vh - 72px);
    text-align: left;
    transition: 0.3s;
    box-shadow: var(--shadow-md);
    gap: 0;
    overflow-y: auto;
    padding: 1rem 0;
  }

  /* line 1332, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .nav-menu.active {
    left: 0;
  }

  /* line 1336, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .nav-item {
    padding: 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
  }

  /* line 1342, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    width: 100%;
    color: var(--dark-color);
  }
  /* line 1350, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .nav-link.dropdown-toggle::after {
    content: " ▸";
    transform: none;
    border: none !important;
  }
  /* line 1356, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .nav-link.dropdown-toggle.active::after {
    content: " ▾";
    transform: rotate(0deg);
    border: none !important;
  }

  /* line 1363, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0.5rem 0;
    background-color: #f8fafc;
    margin-top: 0;
  }
  /* line 1374, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .dropdown-menu .dropdown-content {
    display: block;
    padding: 0;
  }

  /* line 1380, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .dropdown-item {
    padding: 0.875rem 2rem 0.875rem 3rem;
    border-bottom: 1px solid #e2e8f0;
  }
  /* line 1384, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .dropdown-item:last-child {
    border-bottom: none;
  }

  /* line 1389, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .nav-actions {
    display: none;
  }

  /* line 1393, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .mobile-actions {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
  }
  /* line 1398, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .mobile-actions .btn {
    width: 100%;
    margin: 0;
  }

  /* line 1404, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .hamburger {
    display: block;
  }

  /* line 1408, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  /* line 1411, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  /* line 1414, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* line 1418, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  /* line 1421, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  /* line 1424, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .step-card-m:not(:last-child)::after {
    display: none;
  }

  /* line 1427, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .form-navigation {
    flex-direction: column;
    gap: 16px;
  }

  /* line 1431, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .form-navigation .btn {
    width: 100%;
  }
}
@media (max-width: 992px) {
  /* line 1437, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .pricing-card.featured {
    transform: scale(1);
  }
}
@media (max-width: 576px) {
  /* line 1443, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .hero-title {
    font-size: 2rem;
  }

  /* line 1446, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .hero-actions {
    flex-direction: column;
  }

  /* line 1449, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* line 1453, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .footer-description,
  .footer-social {
    margin: 0 auto 24px;
  }

  /* line 1457, /home/ubuntu/www/qikbite/app/assets/stylesheets/kamisato.scss */
  .showcase-list {
    grid-template-columns: 1fr;
  }
}
