@charset "UTF-8";
/* @font-face {
  font-family: "Neuzeit Grotesk Light";
  src: url("./fonts/NeuzeitGrotesk/fonnts.com-Neuzeit_Grotesk_Light.otf")
    format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Neuzeit Grotesk Regular";
  src: url("./fonts/NeuzeitGrotesk/fonnts.com-Neuzeit_Grotesk.otf")
    format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Neuzeit Grotesk Black";
  src: url("./fonts/NeuzeitGrotesk/fonnts.com-Neuzeit_Grotesk_Black.otf")
    format("truetype");
  font-weight: 900;
}

@font-face {
  font-family: "Neuzeit Grotesk Bold";
  src: url("./fonts/NeuzeitGrotesk/fonnts.com-Neuzeit_Grotesk_Bold.otf")
    format("truetype");
  font-weight: 700;
} */
@font-face {
  font-family: "Neuzeit Grotesk Light";
  src: url("./fonts/testNeuzeit/NeuzeitGro-Lig.woff") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Neuzeit Grotesk Regular";
  src: url("./fonts/testNeuzeit/NeuzeitGro-Reg.woff") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Neuzeit Grotesk Black";
  src: url("./fonts/testNeuzeit/NeuzeitGro-Bla.woff") format("truetype");
  font-weight: 900;
}
@font-face {
  font-family: "Neuzeit Grotesk Bold";
  src: url("./fonts/testNeuzeit/NeuzeitGro-Bol.woff") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Poppins Light";
  src: url("./fonts/Poppins/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Poppins Regular";
  src: url("./fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins Medium";
  src: url("./fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Poppins SemiBold";
  src: url("./fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Poppins Bold";
  src: url("./fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
}
:root {
  --table-red: #601919;
}

@media (max-width: 768px) {
  .container,
  .container-sm {
    max-width: 100%;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
    padding: 0;
  }
}
*,
::after,
::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Neuzeit Grotesk Regular", sans-serif;
}

.alert-success {
  color: #0f5132 !important;
}

ul,
li {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

.hidden {
  display: none;
}

.ml-12 {
  margin-left: 12px;
}

.container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button:is(:focus-visible, :focus) {
  outline: none !important;
  box-shadow: none !important;
}

.form-control:is(:focus-visible, :focus) {
  outline: none !important;
  box-shadow: none !important;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  padding: 18px 0;
}

.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .wrapper .left_list ul {
  display: flex;
  gap: 40px;
}

.header .wrapper .left_list ul li {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: #212529;
}

/* gradient text + underline on hover */
.header .wrapper .left_list ul li a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  color: #212529;
  background: linear-gradient(
    269.32deg,
    #ffbe1d 1.03%,
    #00b4e5 44.14%,
    #103254 99.87%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.header .wrapper .left_list ul li a:hover {
  -webkit-text-fill-color: transparent;
}

.header .wrapper .left_list ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(
    90.54deg,
    #002574 9.78%,
    #0054a6 27.94%,
    #0087e2 50.42%,
    #00b4e5 72.99%,
    #ffbb00 91.06%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header .wrapper .left_list ul li a:hover::after {
  opacity: 1;
}

/* Mobile nav links – same hover effect */
.mobile-nav__item a {
  position: relative;
  background: linear-gradient(
    269.32deg,
    #ffbe1d 1.03%,
    #00b4e5 44.14%,
    #103254 99.87%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.mobile-nav__item a:hover {
  -webkit-text-fill-color: transparent;
}

.mobile-nav__item a::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1.5px;
  background: linear-gradient(
    90.54deg,
    #002574 9.78%,
    #0054a6 27.94%,
    #0087e2 50.42%,
    #00b4e5 72.99%,
    #ffbb00 91.06%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav__item a:hover::after {
  opacity: 1;
}

.header .right-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header .right-buttons button {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: #212529;
  border-radius: 6px;
  height: 40px;
  line-height: 100%;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  background-color: #fff;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.header .right-buttons button.ask_button,
.mobile-nav__buttons .ask_button {
  position: relative;
  border: none;
  background-color: #fff;
  border-radius: 6px;
  z-index: 0;
}

.header .right-buttons button.ask_button:hover {
  background-color: #f5f5f5;
}

/* Rotating gradient border */
.header .right-buttons button.ask_button::before,
.mobile-nav__buttons .ask_button::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  z-index: -2;
  border-radius: 7.5px;
  background: conic-gradient(
    from var(--gradient-angle, 0deg),
    #e4e4e4 0%,
    #00b4e5 33%,
    #ffbd00 66%,
    #e4e4e4 100%
  );
  animation: rotateBorder 3s linear infinite;
}

.header .right-buttons button.ask_button::after,
.mobile-nav__buttons .ask_button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 6px;
  background: #fff;
}

.header .right-buttons button.ask_button:hover::after,
.mobile-nav__buttons .ask_button:hover::after {
  background: #f5f5f5;
}

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotateBorder {
  0% {
    --gradient-angle: 0deg;
  }
  100% {
    --gradient-angle: 360deg;
  }
}
.header .right-buttons button.get_free_quote_btn {
  background-color: #002574;
  color: #f5f5f5;
  width: 131px;
}

.header .right-buttons button.get_free_quote_btn:hover {
  background-color: #001e5d;
}

.header .right-buttons .sign_in_btn {
  background-color: #0054a6;
  color: #f5f5f5;
  width: 100px;
  text-decoration: none;
}

.header .right-buttons .sign_in_btn:hover {
  background-color: #0087e2;
}

.header .right-buttons .sign_in_btn:focus {
  box-shadow: none;
  outline: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #212529;
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.77, 0, 0.18, 1),
    opacity 0.25s ease;
  transform-origin: center;
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  z-index: 1050;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}

.mobile-nav__header img {
  height: 36px;
  width: auto;
}

.mobile-nav__close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #212529;
  line-height: 1;
  padding: 4px;
}

.mobile-nav__links {
  padding: 16px 0;
  flex: 1;
}

.mobile-nav__item {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.mobile-nav.open .mobile-nav__item {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav__item a {
  display: block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 400;
}

.mobile-nav__buttons {
  padding: 16px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #eee;
}

.mobile-nav__buttons a,
.mobile-nav__buttons button {
  font-size: 14px;
  font-weight: 400;
  border-radius: 6px;
  height: 44px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  width: 100%;
  white-space: nowrap;
}

.mobile-nav__buttons .ask_button {
  background-color: #fff;
  color: #212529;
}

.mobile-nav__buttons .get_free_quote_btn {
  background-color: #002574;
  color: #f5f5f5;
  border: none;
}

.mobile-nav__buttons .get_free_quote_btn:hover {
  background-color: #001e5d;
}

.mobile-nav__buttons .sign_in_btn {
  background-color: #0054a6;
  color: #f5f5f5;
}

.mobile-nav__buttons .sign_in_btn:hover {
  background-color: #0087e2;
}

.performance-videocards-wrap {
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

.performance-videocards-wrap.videocards-loading {
  min-height: 400px;
}

.performance-videocards-wrap.videocards-loading .performance-videocards,
.performance-videocards-wrap.videocards-loading .performance-videocards__item {
  min-height: 400px;
}

.performance-videocards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow: hidden;
}

.performance-videocards__item {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.performance-videocards__item svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.videocards-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #e8e8e8 0%, #f5f5f5 50%, #e8e8e8 100%);
  background-size: 200% 100%;
  animation: videocards-skeleton-shimmer 1.5s ease-in-out infinite;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.videocards-skeleton.loaded {
  opacity: 0;
  pointer-events: none;
}

@keyframes videocards-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.performance-section {
  padding: 80px 0;
  background-color: #f5f5f5;
  border-radius: 100px 100px 0 0;
  text-align: center;
  margin-top: 0;
  margin-top: -130px;
  z-index: 22;
  position: relative;
}

.performance-section h3.title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 70px;
  text-transform: capitalize;
  background: linear-gradient(
    90.54deg,
    #002574 14.96%,
    #0054a6 27.68%,
    #0087e2 43.43%,
    #00b4e5 59.24%,
    #ffbb00 71.89%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.2;
  display: inline-block;
  margin-bottom: 36px;
}

.performance-section p {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 24px;
  color: #666;
  line-height: 100%;
  margin: 0;
  max-width: 1200px;
  margin: 0 auto 31px auto;
}

.performance-section .performance_actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.performance-section .performance_actions button,
.performance-section .performance_actions a.learn_more {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  border-radius: 6px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f5f5;
  padding: 15px;
  border: 0;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.performance-section .performance_actions button.free_quote {
  background-color: #002574;
}

.performance-section .performance_actions button.free_quote:hover {
  background-color: #001e5d;
}

.performance-section .performance_actions button.learn_more,
.performance-section .performance_actions a.learn_more {
  border: 2px solid #0054a6;
  color: #002574;
}

.performance-section .performance_actions button.learn_more:hover,
.performance-section .performance_actions a.learn_more:hover {
  background-color: #fff;
}

.performance-section .features-grid {
  margin-top: 80px;
}

.performance-section .features-grid .features-grid__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  transition: grid-template-columns 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.performance-section .features-grid .features-grid__wrapper.hover-first {
  grid-template-columns: 1.2fr 1fr;
}

.performance-section .features-grid .features-grid__wrapper.hover-second {
  grid-template-columns: 1fr 1.2fr;
}

.performance-section .features-grid .features-card {
  background-color: #fff;
  border-radius: 18px;
  padding: 32px;
  overflow: hidden;
  height: 590px;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.performance-section
  .features-grid__wrapper.hover-first
  .features-card:nth-child(2),
.performance-section
  .features-grid__wrapper.hover-second
  .features-card:nth-child(1) {
  opacity: 0.4;
}

.performance-section .features-card .table-unit {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.performance-section .features-card .table-image {
  margin-top: -25px;
  /* max-height: 295px;
  width: 100%; */
  transition:
    margin-top 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover first card: zoom IN its content */
.performance-section
  .features-grid__wrapper.hover-first
  .features-card:nth-child(1)
  .table-unit {
  transform: scale(1.48);
}

.performance-section
  .features-grid__wrapper.hover-first
  .features-card:nth-child(1)
  .table-image {
  margin-top: 104px;
  max-height: 600px;
  transform: scale(1.3);
}

/* Hover second card: zoom OUT first card's content */
.performance-section
  .features-grid__wrapper.hover-second
  .features-card:nth-child(1)
  .table-unit {
  transform: scale(0.85);
}

.performance-section
  .features-grid__wrapper.hover-second
  .features-card:nth-child(1)
  .table-image {
  transform: scale(0.85);
}

.performance-section .features-grid .features-card h6 {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 16px;
  text-transform: uppercase;
  color: #707070;
  text-align: left;
  letter-spacing: 8%;
}

.performance-section .features-grid .features-card h4 {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 28px;
  text-transform: capitalize;
  color: #000;
  margin: 0;
  text-align: left;
}

.performance-section .collaboration_box {
  border-radius: 18px;
  background-color: #fff;
  padding: 48px 32px;
  margin-top: 20px;
}

.performance-section .features-grid .features-card.online-ordering .image {
  margin-top: 59px;
  position: relative;
}

.performance-section .features-card.online-ordering .image img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  /* transform: scale(1.24); */
  transform: scale(1.13);
  transform-origin: top center;
}

.performance-section
  .features-grid__wrapper.hover-first
  .features-card.online-ordering
  .image
  img {
  transform: scale(0.95);
  /* transform: scale(0.69); */
}

.performance-section
  .features-grid__wrapper.hover-second
  .features-card.online-ordering
  .image
  img {
  /* transform: scale(1.42); */
  transform: scale(1.16);
}

/* TABLE */
.performance-section .table-unit {
  position: relative;
  display: inline-block;
  margin-top: 60px;
}

.performance-section .table-body {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.performance-section .table-bg {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: var(--table-red);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: background-color 0.4s ease;
}

.performance-section .table-unit.expanded .table-bg {
  background-color: #ffffff;
  border: 1.5px solid rgba(96, 25, 25, 0.1);
}

/* Chairs */
.performance-section .chair {
  position: absolute;
  width: 18px;
  height: 11px;
  background-color: var(--table-red);
  border-radius: 3px;
  z-index: 1;
  top: 50%;
  left: 50%;
}

.performance-section .state-dark {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  opacity: 1;
}

.performance-section .table-unit.expanded .state-dark {
  opacity: 0;
}

.performance-section .table-number {
  font-family: "Poppins Semibold";
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
}

.performance-section .table-seats {
  font-family: "Poppins Regular";
  font-size: 10px;
  color: #fff;
  margin-top: 3px;
}

.performance-section .state-light {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  opacity: 0;
}

.performance-section .table-unit.expanded .state-light {
  opacity: 1;
}

.performance-section .check-badge {
  width: 22px;
  height: 18px;
  background-color: var(--table-red);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.performance-section .check-badge svg {
  width: 12px;
  height: 12px;
}

.performance-section .wine-icon svg {
  width: 24px;
  height: 24px;
}

.performance-section .status-icon {
  text-align: center;
  margin-top: -4px;
}

.performance-section .status-icon svg {
  width: 14px;
  height: 20px;
}

/* TABLE */
.performance-section .collaboration_box .collaboration_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.performance-section .collaboration_box .collaboration_container .left h5 {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 16px;
  color: #707070;
  line-height: 16px;
  margin-bottom: 16px;
  text-align: left;
  text-transform: uppercase;
}

.performance-section .collaboration_box .collaboration_container .left h4 {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 28px;
  color: #000;
  text-transform: capitalize;
  margin: 0;
  text-align: left;
}

.performance-section .collaboration_box .collaboration_container .logo-stack {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.rates-starting-section {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #1a1a1a;
}

.rates-starting-section .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.rates-starting-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.rates-starting-section .content-wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  overflow: hidden;
}

/* ---- Slide Container ---- */
.rates-starting-section .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
}

/* ---- Slide 1: enters from TOP, exits to TOP ---- */
.rates-starting-section .slide--1 {
  transform: translateY(-40%);
  transition:
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rates-starting-section .slide--1.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.rates-starting-section .slide--1.exit-up {
  transform: translateY(-40%);
  opacity: 0;
}

/* ---- Slide 2: enters from BOTTOM, exits to BOTTOM ---- */
.rates-starting-section .slide--2 {
  transform: translateY(40%);
  transition:
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rates-starting-section .slide--2.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.rates-starting-section .slide--2.exit-down {
  transform: translateY(40%);
  opacity: 0;
}

/* ---- Typography ---- */
.rates-starting-section .subtitle,
.rates-starting-section .highlight-sub {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 32px;
  color: #fff;
  margin-bottom: 0.25rem;
}

.rates-starting-section .main-text {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 58px;
  color: #ffffff;
}

.rates-starting-section .highlight-value {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 150px;
  line-height: 100%;
}

/* Gradient text for 1.8% */
.rates-starting-section .highlight-value.gradient-1,
.rates-starting-section .highlight-value.gradient-2 {
  background: linear-gradient(
    90.61deg,
    #141b34 -35.5%,
    #00b4e5 34.2%,
    #ffbb00 93.22%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.automation-section {
  padding: 74px 0 0 0;
}

.automation-section .automation-card {
  background-color: #f5f5f5;
  border-radius: 18px;
  padding: 40px;
}

.automation-section .automation-card__lottie {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 1200 / 551;
}

.automation-section .automation-card__lottie svg {
  width: 100%;
  height: auto;
}

.automation-section .automation-card__icon img {
  animation: spinIcon 4s linear infinite;
}

@keyframes spinIcon {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.automation-section .automation-card h3 {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 38px;
  color: #4d4d4d;
  margin: 20px 0;
}

.automation-section .automation-card p {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 22px;
  color: #707070;
  margin-bottom: 20px;
  line-height: 28px;
  max-width: 1034px;
}

.automation-section .automation-card .get_started_btn {
  background-color: #002574;
  border-radius: 6px;
  padding: 16px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: #f5f5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.automation-section .automation-card .get_started_btn:hover {
  background-color: #001e5d;
}

.eliminate-fees-section {
  position: relative;
  width: 100%;
  height: 357px;
  overflow: hidden;
  background: #1a1a1a;
  margin-top: 80px;
}

.eliminate-fees-section .ef-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.eliminate-fees-section .ef-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eliminate-fees-section .ef-subtitle {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 32px;
  color: #fff;
  margin-bottom: 0;
}

.eliminate-fees-section .ef-heading {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 64px;
  color: #fff;
  margin-bottom: 0;
}

/* Scroll offset for sticky header - prevents content from being cut off */
#platform-features-section,
#restaurant-packages-section,
#testimonials,
#contact-section,
#faq {
  scroll-margin-top: 100px;
}

.platform-features-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.pf-tabs-wrapper {
  margin-bottom: 50px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pf-tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.pf-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: max-content;
}

.pf-tab {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16px;
  color: #aaa;
  background: transparent;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 100%;
  height: 40px;
  transition: all 0.3s ease;
}

.pf-tab:hover {
  background-color: #fff;
}

.pf-tab.active {
  color: #fff;
}

.pf-tab.active {
  border: none;
}

.pf-tab.active[data-tab="reservations"] {
  background: linear-gradient(
    90deg,
    #15537e 0%,
    #00b4e5 361.45%,
    #ffbb00 722.9%
  );
}

.pf-tab.active[data-tab="ordering"] {
  background: linear-gradient(
    90deg,
    #15537e -120.59%,
    #00b4e5 282.31%,
    #ffbb00 685.21%
  );
}

.pf-tab.active[data-tab="payments"] {
  background: linear-gradient(
    90deg,
    #15537e -120.59%,
    #00b4e5 282.31%,
    #ffbb00 685.21%
  );
}

.pf-tab.active[data-tab="reputation"] {
  background: linear-gradient(
    90deg,
    #15537e -259.69%,
    #00b4e5 61.57%,
    #ffbb00 382.84%
  );
}

.pf-tab.active[data-tab="sms"] {
  background: linear-gradient(
    90deg,
    #15537e -484.97%,
    #00b4e5 -59.89%,
    #ffbb00 365.19%
  );
}

.pf-tab.active[data-tab="design"] {
  background: linear-gradient(
    90deg,
    #15537e -614.85%,
    #00b4e5 -176.14%,
    #ffbb00 262.57%
  );
}

.pf-tab.active[data-tab="social"] {
  background: linear-gradient(
    90deg,
    #15537e -466.31%,
    #00b4e5 -183.16%,
    #ffbb00 100%
  );
}

.pf-panels {
  position: relative;
}

.pf-panel {
  display: none;
  animation: pfFadeIn 0.4s ease;
}

.pf-panel.active {
  display: block;
}

@keyframes pfFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pf-title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 45px;
  color: #002574;
  margin-bottom: 20px;
}

.pf-tagline {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 26px;
  color: #212529;
  margin-bottom: 26px;
  text-transform: capitalize;
  line-height: 100%;
}

.pf-features-label {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 28px;
  color: #ffbb00;
  margin-bottom: 16px;
}

.pf-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 547px;
}

.pf-features-list li {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16px;
  color: #707070;
  margin-bottom: 6px;
  padding-left: 14px;
  position: relative;
  line-height: 20px;
}

.pf-features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #707070;
  font-weight: 700;
}

.pf-features-list li strong {
  font-family: "Neuzeit Grotesk Bold";
  display: block;
  color: #707070;
  font-size: 16px;
  margin-bottom: 2px;
}

.pf-image-wrapper {
  text-align: center;
}

.pf-lottie {
  width: 100%;
  max-width: 100%;
  min-height: 280px;
  border-radius: 8px;
}

.pf-lottie svg {
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.pf-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* RESTAURANT PACKAGES */
.restaurant-packages-section {
  padding: 100px 0 0 0;
  background-color: #f5f5f5;
}

.restaurant-packages-section .rp-title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 45px;
  text-transform: capitalize;
  margin-bottom: 20px;
  color: #002574;
}

.restaurant-packages-section .rp-subtitle {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 28px;
  color: #707070;
  margin-bottom: 72px;
}

.compact-box {
  background-color: #fff;
  box-shadow: 0px 4.04px 10.11px 0px rgba(0, 0, 0, 0.1019607843);
  border: 1px solid #e8ebf1;
  border-radius: 8px;
  padding: 20px;
}

.compact-box .compact-left .compact-accent {
  padding-left: 12px;
  border-left: 4px solid #002574;
}

.compact-box .compact-left .compact-accent h3 {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 20px;
  color: #212529;
  margin: 0;
}

.compact-box .compact-left .compact-accent p {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12px;
  color: #666;
  margin: 5px 0 0;
  padding-bottom: 0;
}

.compact-box .compact-border {
  width: 100%;
  height: 1px;
  background-color: #f2f2f2;
  margin: 17px 0;
}

.compact-box .compact-price-box {
  width: 100%;
  margin-top: 24px;
  padding: 14px 9px;
  border: 1.01px solid #f2f2f2;
  background: #fcfcfd;
  border-radius: 10px;
}

.compact-box .compact-price-box .compact-starting {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 18px;
  color: #5a6173;
  display: block;
  margin-bottom: 40px;
}

.compact-box .compact-price-box .compact-price {
  font-family: "Neuzeit Grotesk Black";
  font-size: 100px;
  color: #293649;
  line-height: 1;
  display: inline;
}

.compact-box .compact-price-box .compact-monthly {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 18px;
  color: #9399a3;
  display: inline;
  margin-left: 8px;
  vertical-align: baseline;
}

.compact-box .compact-right {
  display: flex;
  gap: 54px;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 13px;
}

.compact-box .compact-right .reviews_col {
  position: relative;
}

/* .compact-box .compact-right .reviews_col::before {
  content: "";
  position: absolute;
  right: -28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e5e5e5;
}

.compact-box .compact-right .reviews_col::after {
  content: "OR";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  color: #999;
  background: #fff;
  padding: 5px 0;
  z-index: 1;
} */

.compact-box .compact-right .right_col h4 {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.restaurant-packages-section .check-list li:not(:last-child) {
  margin-bottom: 16px;
}

.restaurant-packages-section .check-list li {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: #4d4d4d;
  padding: 0;
  padding-left: 26px;
  position: relative;
}

.restaurant-packages-section .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: url(./images/plan-item-check-icon.svg) no-repeat center/contain;
}

.restaurant-packages-section .check-list li.no_checkmark {
  padding-left: 0;
}

.restaurant-packages-section .check-list li.no_checkmark::before {
  display: none;
}

.compact-box .rp-note {
  font-family: "Poppins Regular";
  font-size: 12px;
  color: #4d4d4d;
  font-style: italic;
  text-transform: capitalize;
  margin: 17px 0 20px 0;
}

.compact-box .get_started_button {
  border-top: 1px solid #f2f2f2;
  padding-top: 20px;
}

.compact-box .get_started_button a {
  background-color: #002574;
  border-radius: 6px;
  padding: 15px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: #f5f5f5;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease-in-out;
}

.compact-box .get_started_button a:hover {
  background-color: #001e5d;
}

.restaurant-packages-section .rp-btn-get-started.btn-blue {
  background: #0054a6;
}

.restaurant-packages-section .rp-btn-get-started.btn-blue:hover {
  background: #004690;
}

.restaurant-packages-section .rp-btn-get-started.btn-gold {
  background: #e8a600;
}

.restaurant-packages-section .rp-btn-get-started.btn-gold:hover {
  background: #cc9200;
}

/* Toggle button */
.restaurant-packages-section .rp-toggle-wrapper {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.restaurant-packages-section .rp-toggle-wrapper::before,
.restaurant-packages-section .rp-toggle-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background: #e0e0e0;
  width: calc(50% - 140px);
}

.restaurant-packages-section .rp-toggle-wrapper::before {
  left: 0;
}

.restaurant-packages-section .rp-toggle-wrapper::after {
  right: 0;
}

.restaurant-packages-section .rp-toggle-btn {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 16px;
  color: #9399a3;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.restaurant-packages-section .rp-toggle-btn:hover {
  color: #002574;
}

.restaurant-packages-section .rp-toggle-icon {
  font-weight: 700;
  margin-right: 4px;
}

/* Expanded cards container */
.restaurant-packages-section .rp-expanded {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.restaurant-packages-section .rp-expanded.open {
  opacity: 1;
  overflow: visible;
}

/* Individual expanded cards */
.restaurant-packages-section .rp-card {
  background: #fff;
  border: 1px solid #e8ebf1;
  border-radius: 8px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0px 4.04px 10.11px 0px rgba(0, 0, 0, 0.1019607843);
}

.restaurant-packages-section .rp-card-accent {
  width: 4px;
  height: 48px;
  border-radius: 2px;
  position: absolute;
  left: 24px;
  top: 28px;
}

.restaurant-packages-section .rp-card-accent.accent-dark {
  background: #00b4e5;
}

.restaurant-packages-section .rp-card-accent.accent-blue {
  background: #0054a6;
}

.restaurant-packages-section .rp-card-accent.accent-gold {
  background: #e8a600;
}

.restaurant-packages-section .rp-card-header {
  padding-left: 16px;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 20px;
}

.restaurant-packages-section .rp-card-name {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 20px;
  color: #212529;
  margin: 0;
}

.restaurant-packages-section .rp-card-tier {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12px;
  color: #666;
  margin: 5px 0 0;
}

.restaurant-packages-section .rp-card-price-block {
  margin-top: 20px;
  padding: 15px 16px;
  background: #fcfcfd;
  border: 1.01px solid #f2f2f2;
  border-radius: 10px;
}

.restaurant-packages-section .rp-card-starting {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: #5a6173;
  display: block;
  margin-bottom: 17px;
}

.restaurant-packages-section .rp-card-price {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 28px;
  color: #293649;
  line-height: 1;
  display: inline;
  margin-bottom: 7px;
}

.restaurant-packages-section .rp-card-monthly {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: #9399a3;
  display: block;
}

.restaurant-packages-section .rp-card-features-title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 16px;
  color: #212529;
  margin: 24px 0 20px;
  padding-top: 20px;
  border-top: 1px solid #f2f2f2;
}

.restaurant-packages-section .rp-card .rp-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  margin-bottom: 20px;
}

.restaurant-packages-section .rp-card .rp-check-list li {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: #666;
  padding: 0;
  padding-left: 26px;
  position: relative;
}

.restaurant-packages-section .rp-card .rp-check-list li:not(:last-child) {
  margin-bottom: 16px;
}

.restaurant-packages-section .rp-card .rp-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: url("./images/plan-item-check-icon.svg") no-repeat center/contain;
}

.restaurant-packages-section .rp-card .rp-check-list li.no_checkmark {
  padding-left: 0;
}

.restaurant-packages-section .rp-card .rp-check-list li.no_checkmark::before {
  display: none;
}

.restaurant-packages-section .rp-card .rp-note {
  font-family: "Poppins Regular";
  font-size: 10px;
  color: #4d4d4d;
  font-style: italic;
  margin: 20px 0;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 20px;
}

.restaurant-packages-section .rp-card .rp-btn-get-started {
  margin-top: 0;
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 6px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
  background: #00b4e5;
  color: #fff;
}

.restaurant-packages-section .rp-card .rp-btn-get-started:hover {
  background: #001e5d;
}

.restaurant-packages-section .rp-card .rp-btn-get-started.btn-blue {
  background: #0087e2;
}

.restaurant-packages-section .rp-card .rp-btn-get-started.btn-blue:hover {
  background: #001e5d;
}

.restaurant-packages-section .rp-card .rp-btn-get-started.btn-gold {
  background: #ffbb00;
}

.restaurant-packages-section .rp-card .rp-btn-get-started.btn-gold:hover {
  background: #001e5d;
}

.restaurant-packages-section .rp-card-quote {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10px;
  color: #4d4d4d;
  margin-top: 20px;
  margin-bottom: 0;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 70px 0 0 0;
  background: #fff;
}

.testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.testimonials-title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 45px;
  color: #002574;
  margin: 0;
}

.testimonials-title span {
  color: #333;
}

.testimonials-avatars {
  display: flex;
}

.testimonials-swiper {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 50px;
}

.testimonials-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
}

.testimonial-card {
  background: #0054a6;
  border-radius: 18px;
  padding: 36px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 104px;
  min-height: 480px;
}

.testimonial-quote-icon {
  flex-shrink: 0;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 24px;
  color: #fff;
  line-height: 28px;
  margin: 0 0 20px;
}

.testimonial-content p:last-of-type {
  margin-bottom: 0;
}

.testimonial-author {
  margin-top: 20px;
  text-align: center;
}

.testimonial-author h4 {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 24px;
  color: #333;
  margin: 0 0 5px;
}

.testimonial-author p {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 22px;
  color: #aaa;
  margin: 0;
}

@media (max-width: 768px) {
  .testimonials-header {
    flex-direction: column;
    gap: 16px;
  }
  .testimonials-title {
    font-size: 24px;
    text-align: center;
  }
  .testimonial-card {
    padding: 40px 24px 32px;
    min-height: 480px;
  }
}
/* CONTACT SECTION */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-info .contact-heading {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 45px;
  color: #002574;
  margin: 0 0 5px;
}

.contact-info .contact-sub {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 28px;
  color: #707070;
  margin: 0 0 53px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 74px;
  max-width: 420px;
}

.contact_details_wrapper {
  max-width: 420px;
}

.contact-list li {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16px;
  color: #707070;
  padding: 0 0 0 15px;
  margin-bottom: 6px;
  position: relative;
}

.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #707070;
  border-radius: 50%;
}

.contact-list li a {
  color: #00b4e5;
  text-decoration: underline;
}

.contact-details {
  margin-bottom: 20px;
}

.contact-details p {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 20px;
  color: #333;
  margin: 0 0 10px;
}

.contact-details a {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16px;
  color: #707070;
  text-decoration: underline;
}

.contact-form-box {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 50px;
}

.contact-form-title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 32px;
  color: #333;
  margin: 0 0 10px;
}

.contact-form-sub {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16px;
  color: #707070;
  margin: 0 0 10px;
}

.contact-field {
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 12px 0;
  margin-bottom: 2px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16px;
  color: #1a1a1a;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ddd;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom: 1px solid #00b4e5;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-error {
  display: block;
  font-size: 14px;
  color: #dc3545;
  margin-bottom: 4px;
  margin-top: 5px;
}

.contact-submit-btn {
  width: 100%;
  padding: 14px;
  margin-top: 25px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16px;
  color: #aaa;
  background: #e5e5e5;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.contact-submit-btn:not(.filled) {
  background: #e5e5e5;
  color: #aaa;
}

.contact-submit-btn:not(.filled):hover {
  background-color: #00b4e5;
  color: #fff;
}

.contact-submit-btn.filled {
  background: #00b4e5;
  color: #fff;
}

.contact-submit-btn.filled:hover {
  background: #0099c7;
  color: #fff;
}

/* FAQ SECTION */
.faq-section {
  background: #fff;
}

.faq-border {
  border-top: 1px solid #f2f2f2;
  padding-top: 50px;
}

.faq-title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 45px;
  color: #002574;
  margin: 0 0 20px;
}

.faq-subtitle {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 28px;
  color: #707070;
  margin: 0 0 71px;
}

.faq-item {
  border-bottom: 1px solid #e8e8e8;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 24px;
  line-height: 28px;
  color: #002574;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #001e5d;
}

.faq-question:hover .faq-icon {
  color: #002574;
}

.faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaaaaa;
  transition: color 0.3s ease;
}

.faq-icon svg {
  width: 32px;
  height: 32px;
}

.faq-icon .faq-icon-minus {
  display: none;
}

.faq-item.open .faq-icon .faq-icon-plus {
  display: none;
}

.faq-item.open .faq-icon .faq-icon-minus {
  display: block;
}

.faq-item.open .faq-icon {
  color: #002574;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 24px;
  color: #212529;
  line-height: 28px;
  margin: 0 0 20px;
  padding-top: 4px;
  padding-right: 48px;
}

/* SLIDER */
.clients-slider-section {
  padding: 130px 0 50px 0;
}

.clients-slider-section p {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 24px;
  color: #999;
  margin-bottom: 48px;
  text-align: center;
}

/* distributors-infinit-slider */
.distributors-infinit-slider .slider {
  height: 60px;
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.distributors-infinit-slider .slider::before,
.distributors-infinit-slider .slider::after {
  position: absolute;
  background-image: linear-gradient(
    to right,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  height: 100%;
  width: 18%;
  z-index: 2;
  pointer-events: none;
}

.distributors-infinit-slider .slider::before {
  left: 0;
  top: 0;
}

.distributors-infinit-slider .slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.distributors-infinit-slider .slide-track {
  display: flex;
  animation: distributorsScroll 40s linear infinite;
  gap: 68px;
  padding-right: 68px;
}

/* Pause animation on hover */
.distributors-infinit-slider .slide-track:hover {
  animation-play-state: paused;
}

.distributors-infinit-slider .slide {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  min-width: 120px; /* Fixed minimum width to prevent jumping */
}

.distributors-infinit-slider .slide img {
  max-height: 60px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes distributorsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .distributors-infinit-slider .slide-track {
    gap: 40px;
    padding-right: 40px;
  }
  .distributors-infinit-slider .slide {
    height: 40px;
    min-width: 100px;
  }
  .distributors-infinit-slider .slide img {
    max-height: 40px;
    max-width: 100px;
  }
}
/* SLIDER */
/* RESOURCE CARDS (Footer) */
.resource-cards {
  padding: 48px 0;
}

.resource-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 32px 24px 24px;
}

.resource-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.resource-card__title {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 28px;
  color: #fff;
  margin: 0;
  text-align: center;
  width: 100%;
}

.resource-card__btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2588235294);
  border-radius: 8px;
  text-decoration: none;
  backdrop-filter: blur(40px);
  height: 48px;
  transition: all 0.3s ease;
}

.resource-card__btn:hover {
  background: #0087e2;
  color: #fff;
}

/* footer */
.footer {
  background-image: url(./images/kore_footer_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-bottom {
  position: relative;
}

.stay-connected {
  padding: 64px 0;
}

.stay-connected__title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 36px;
  color: #15537e;
  margin-bottom: 24px;
}

.stay-connected__form {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stay-connected__input-wrap {
  flex: 1;
  min-width: 200px;
}

.stay-connected__error {
  display: block;
  color: #dc3545;
  font-size: 16px;
  margin-top: 8px;
}

.stay-connected__error:empty {
  display: none;
}

.stay-connected__input {
  width: 100%;
  padding: 18px 10px;
  border: 2px solid #cccccc;
  border-radius: 8px;
  color: #212529;
  background: #fff;
  outline: none;
  height: 48px;
  transition: border-color 0.2s;
}

.stay-connected__input::placeholder {
  color: #b3b3b3;
}

.stay-connected__input:focus {
  border-color: #0087e2;
}

.stay-connected__btn {
  padding: 18px 53px;
  background-color: transparent;
  border: 1px solid #15537e;
  color: #15537e;
  border-radius: 8px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 18px;
  cursor: pointer;
  white-space: nowrap;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.stay-connected__btn:hover {
  background: #001e5d;
  color: #fff;
}

.footer-links {
  padding: 0 0 64px;
}

.footer-links__grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer_right_grid {
  display: flex;
  gap: 110px;
}

.footer-links__logo {
  height: 28px;
  margin-bottom: 18px;
  width: 109px;
}

.footer-links__tagline {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: #15537e;
  margin-bottom: 34px;
}

.footer-links__socials {
  display: flex;
  gap: 24px;
}

.footer-links__heading {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 22px;
  color: #15537e;
  margin-bottom: 18px;
}

.footer-links__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links__list li {
  margin-bottom: 8px;
}

.footer-links__list a,
.footer-links__list span {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16px;
  color: #15537e;
  text-decoration: none;
  transition: color 0.2s;
}

/* footer */
/* Quote Modal */
.quote-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.quote-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.quote-modal {
  background: #fff;
  background-image: url(./images/quote-modal-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  width: 100%;
  max-width: 1200px;
  max-height: calc(100vh - 48px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  -ms-overflow-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  min-height: 0;
  margin: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-modal::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.quote-modal::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.quote-modal::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.quote-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.quote-modal-overlay.active .quote-modal {
  transform: scale(1) translateY(0);
}

@media (max-height: 800px) {
  .quote-modal-overlay {
    padding: 16px;
    align-items: flex-start;
  }
  .quote-modal {
    max-height: none;
    min-height: min-content;
  }
  .quote-modal__left,
  .quote-modal__right {
    padding: 28px 40px;
  }
  .quote-modal__subheading {
    margin-bottom: 24px;
  }
  .quote-modal__features {
    gap: 4px;
  }
  .feature-card {
    padding: 12px 14px 20px 14px;
  }
  .feature-card__title {
    font-size: 12px;
    margin-bottom: 6px;
  }
  .feature-card__desc {
    font-size: 10px;
  }
  .quote-step {
    padding: 24px 40px;
  }
  .quote-step__title {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .quote-modal__heading {
    font-size: 32px;
  }
  .quote-modal__subheading {
    font-size: 22px;
  }
}
.quote-modal__left {
  padding: 50px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.quote-modal__heading {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 38px;
  background: linear-gradient(
    90.54deg,
    #002574 0.47%,
    #00b4e5 43.18%,
    #ffbb00 84.03%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quote-modal__subheading {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 28px;
  color: #707070;
  margin-bottom: 60px;
}

.quote-modal__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  flex: 1;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.4588235294);
  border: 1px solid #eff0f6;
  border-radius: 8px;
  padding: 20px 20px 32px 20px;
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.feature-card__title {
  font-family: "Neuzeit Grotesk Black";
  font-size: 13px;
  font-weight: 700;
  color: #4c4c4c;
  margin-bottom: 9px;
}

.feature-card__desc {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 10px;
  line-height: 100%;
  color: #666;
}

.quote-modal__right {
  padding: 50px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 0;
}

.quote-modal__close {
  position: absolute;
  top: 10px;
  right: 16px;
  width: 22px;
  height: 22px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #212529;
  font-size: 18px;
  transition:
    background 0.2s,
    color 0.2s;
  z-index: 10;
  display: none;
}

.quote-steps {
  flex: 1;
  position: relative;
  min-height: 0;
}

.quote-step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  padding: 40px 50px;
  background-color: #fff;
  border-radius: 10px;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.quote-step.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
  position: relative;
}

.quote-step.exit-left {
  opacity: 0;
  transform: translateX(-40px);
  pointer-events: none;
  /* Prevent expanding to full height during exit - height set via JS */
  inset: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
}

.quote-step__title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.quote-input-group {
  margin-bottom: 12px;
  position: relative;
}

.quote-input-inner,
.quote-select-inner {
  position: relative;
}

.quote-step2 .quote-input-group,
.quote-step2 .quote-input-row {
  margin-bottom: 12px;
}

.quote-error:empty {
  display: none;
}

.quote-input {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  padding: 0;
  font-family: "Neuzeit Grotesk Regular";
  color: #212529;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.quote-step2 .quote-input::placeholder {
  color: #aaa;
}

.quote-input:focus {
  border-color: #00b4e5;
}

.quote-input::placeholder {
  color: #aaa;
}

.quote-input-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 10px 15px;
  height: 48px;
  transition: border-color 0.2s;
}

.quote-input-inner:focus-within {
  border-color: #00b4e5;
}

.quote-input-inner .quote-input {
  border: none;
  border-radius: 0;
}

.quote-step2 .quote-input {
  height: 48px;
  border-radius: 4px;
  padding: 18px 10px;
}

/* .quote-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
} */
.quote-select-wrapper {
  position: relative;
  margin-bottom: 12px;
}

.quote-select-wrapper .quote-error {
  margin-bottom: 4px;
}

.quote-select-wrapper .quote-select-inner {
  position: relative;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.2s;
}

.quote-select-inner.is-open,
.quote-select-inner:focus-within {
  border-color: #00b4e5;
}

.quote-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 15px;
  height: 48px;
  border: none;
  background: transparent;
  font-size: 16px;
  font-family: "Neuzeit Grotesk Regular";
  color: #999;
  cursor: pointer;
  outline: none;
  text-align: left;
}

.quote-select-inner.has-value .quote-select-trigger .quote-select-text {
  color: #1a1a1a;
}

.quote-select-arrow {
  flex-shrink: 0;
  margin-left: 8px;
  color: #666;
  transition: transform 0.2s;
}

.quote-select-inner.is-open .quote-select-arrow {
  transform: rotate(180deg);
}

.quote-select-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
  max-height: 280px;
  overflow-y: auto;
  z-index: 100;
}

.quote-select-inner.is-open .quote-select-dropdown {
  display: block;
}

.quote-select-option {
  padding: 8px 16px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: #4c4c4c;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}

.quote-select-option:last-child {
  border-bottom: none;
}

.quote-select-option:hover {
  background: #00b4e5;
  color: #fff;
}

.quote-select-option.is-selected {
  background: #00b4e5;
  color: #fff;
}

.quote-dropdown {
  border: 1px solid #d8e2e8;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.quote-dropdown__option {
  padding: 12px 16px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: #3a5a6a;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid #f0f4f6;
}

.quote-dropdown__option:last-child {
  border-bottom: none;
}

.quote-dropdown__option:hover {
  background: #f0f8fa;
}

.quote-dropdown__option.selected {
  background: #e8f4f8;
  color: #1a9aaa;
  font-weight: 600;
}

/* Continue Button */
.quote-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-family: "Neuzeit Grotesk Regular";
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s,
    opacity 0.2s;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

.quote-btn:active {
  transform: scale(0.98);
}

.quote-btn--continue {
  background: #e5e5e5;
  color: #aaa;
}

.quote-btn--continue:hover {
  background: #00b4e5;
  color: #fff;
}

.quote-btn--continue:disabled {
  cursor: not-allowed;
}

.quote-btn--continue:disabled:hover {
  background: #e5e5e5;
  color: #aaa;
}

.quote-btn--cyan {
  background: #00b4e5;
  color: #fff;
}

.quote-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: #333;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  margin-bottom: 20px;
  transition: color 0.2s;
}

.quote-back span {
  line-height: 100%;
}

.quote-back:hover {
  color: #1a3045;
}

.quote-input--no-icon {
  padding-left: 16px;
}

.quote-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.quote-input-row .quote-input-group {
  margin-bottom: 0;
}

.quote-input-row .quote-input {
  margin-bottom: 0;
}

.quote-error {
  display: block;
  color: #dc3545;
  font-size: 14px;
  margin-top: 6px;
}

.quote-btn--continue.active {
  background: #00b4e5;
  color: #fff;
}

.quote-btn--continue.active:hover {
  background: #00b4e5;
  color: #fff;
}

.quote-success {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 20px 0;
}

.quote-success img {
  animation: spinIcon 4s linear infinite;
}

.quote-success__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.quote-success__title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 28px;
  color: #333;
  margin-top: 30px;
  margin-bottom: 5px;
}

.quote-success__desc {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 30px;
}

.demo-trigger {
  padding: 16px 32px;
  background: linear-gradient(135deg, #e8b830, #d4a520);
  color: #1a3045;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Neuzeit Grotesk Regular";
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(232, 184, 48, 0.3);
}

.demo-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 184, 48, 0.4);
}

/* Scroll to Top */
.scroll-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #002574;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.8);
  transition:
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s,
    background 0.2s,
    box-shadow 0.2s;
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  transform: translateY(-2px) scale(1.05);
}

.scroll-to-top:active {
  transform: translateY(0) scale(0.98);
}

.chat-popup {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.chat-popup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.chat-popup.open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.chat-popup__window {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 40px);
  background: #fff;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}

.chat-popup.open .chat-popup__window {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.chat-popup__header {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  background: #fafafa;
  position: relative;
  flex-shrink: 0;
}

.chat-popup__body {
  min-height: 0;
}

.chat-popup__footer {
  flex-shrink: 0;
}

.chat-popup__window {
  z-index: 1;
}

.chat-popup__header-left {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
  position: relative;
}

.chat-popup__menu-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  color: #555;
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
}

.chat-popup__menu-btn:hover {
  background: #eee;
  color: #333;
}

.chat-popup__menu-btn svg {
  stroke: #212529;
}

.chat-popup__menu {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 4px;
  background: transparent;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s,
    transform 0.2s ease;
  z-index: 10;
}

.chat-popup__menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-popup__menu-newchat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 2px solid #e5e5e5;
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  color: #212529;
  font-family: "Neuzeit Grotesk Regular";
  transition:
    background 0.2s,
    border-color 0.2s;
  min-width: 160px;
}

.chat-popup__menu-newchat:hover {
  background: #e5e5e5;
  border-color: #e5e5e5;
}

.chat-popup__menu-newchat svg {
  color: #555;
  flex-shrink: 0;
}

.chat-popup__confirm {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s;
}

.chat-popup__confirm.open {
  opacity: 1;
  visibility: visible;
}

.chat-popup__confirm-window {
  background: #fff;
  border-radius: 8px;
  max-width: 267px;
  width: calc(100% - 40px);
  margin: 20px;
  transform: scale(0.95);
  border: 2px solid #e5e5e5;
  transition: transform 0.2s ease;
}

.chat-popup__confirm.open .chat-popup__confirm-window {
  transform: scale(1);
}

.chat-popup__confirm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 17px 0 17px;
}

.chat-popup__confirm-title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 18px;
  color: #212529;
  margin: 0;
}

.chat-popup__confirm-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  color: #555;
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
}

.chat-popup__confirm-close:hover {
  background: #eee;
  color: #333;
}

.chat-popup__confirm-text {
  padding: 20px 17px;
  margin: 0;
  font-size: 14px;
  color: #212529;
  font-family: "Neuzeit Grotesk Regular";
}

.chat-popup__confirm-actions {
  display: flex;
  gap: 12px;
  padding: 0 17px 20px;
}

.chat-popup__confirm-cancel {
  flex: 1;
  padding: 12px 20px;
  border: 1.5px solid #002574;
  background: #fff;
  color: #002574;
  border-radius: 6px;
  font-size: 14px;
  font-family: "Neuzeit Grotesk Regular";
  cursor: pointer;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}

.chat-popup__confirm-newchat {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: #002574;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Neuzeit Grotesk Regular";
  cursor: pointer;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.chat-popup__confirm-newchat:hover {
  background: #001e5d;
}

.chat-popup__title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 16px;
  color: #212529;
  margin: 0;
  text-align: center;
  padding: 0 16px;
}

.chat-popup__header-actions {
  flex: 1;
  display: flex;
  gap: 4px;
  justify-content: flex-end;
  min-width: 0;
}

.chat-popup__action-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  color: #555;
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
}

.chat-popup__action-btn:hover {
  background: #eee;
  color: #333;
}

.chat-popup__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
}

.chat-popup__greeting {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 258px;
}

.chat-popup__sparkle {
  color: #00b4e5;
  flex-shrink: 0;
}

.chat-popup__greeting p {
  margin: 0;
  font-size: 16px;
  color: #333;
  font-family: "Neuzeit Grotesk Regular";
  line-height: 1.5;
}

.chat-popup__suggestions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-popup__suggestion {
  padding: 12px 16px;
  border: 1px solid #002574;
  background: #fff;
  border-radius: 100px;
  padding: 8px 12px;
  color: #002574;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  max-width: max-content;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.chat-popup__suggestion:hover {
  border-color: #00b4e5;
  background: #f8fcfe;
}

.chat-popup__messages {
  display: none;
}

.chat-popup.has-messages .chat-popup__greeting,
.chat-popup.has-messages .chat-popup__suggestions {
  display: none;
}

.chat-popup.has-messages .chat-popup__messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.chat-popup__message {
  padding: 12px 16px;
  border-radius: 5px;
  font-size: 14px;
  font-family: "Neuzeit Grotesk Regular";
  line-height: 1.5;
  max-width: 90%;
}

.chat-popup__message--user {
  align-self: flex-end;
  background: #00b4e5;
  color: #fff;
}

.chat-popup__message--bot {
  align-self: flex-start;
  background: #f0f4f6;
  color: #333;
}

.chat-popup__loading-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.chat-popup__loading-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #333;
  animation: chat-popup-dot-bounce 1.4s ease-in-out infinite both;
}

.chat-popup__loading-dots span:nth-child(1) {
  animation-delay: 0s;
}

.chat-popup__loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-popup__loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes chat-popup-dot-bounce {
  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.chat-popup__footer {
  padding: 16px 20px;
  padding-top: 0;
  background: #fff;
  flex-shrink: 0;
}

.chat-popup__input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border-radius: 12px;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #e4e4e4 0%, #00b4e5 50%, #ffbd00 100%) border-box;
  height: 40px;
}

.chat-popup__input-icon {
  color: #00b4e5;
  flex-shrink: 0;
}

.chat-popup__input {
  flex: 1;
  border: none;
  background: none;
  font-family: "Neuzeit Grotesk Regular";
  color: #333;
  outline: none;
}

.chat-popup__input::placeholder {
  color: #999;
}

.chat-popup__input:disabled,
.chat-popup__send:disabled {
  cursor: not-allowed;
  pointer-events: none;
  background-color: transparent;
}

.chat-popup__send {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.chat-popup__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 0;
  pointer-events: none;
}

.chat-popup.open .chat-popup__overlay {
  display: block;
}

@media (min-width: 769px) {
  .chat-popup__overlay {
    background: transparent;
  }
}

html.chat-open,
html.chat-open body {
  overflow: hidden !important;
  height: 100% !important;
}

footer .terms_conditions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 34px;
  background: rgba(0, 135, 226, 0.1019607843);
  backdrop-filter: blur(48px);
}

footer .terms_conditions span,
footer .terms_conditions a {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16px;
  color: #15537e;
}

/* video */
.video-section {
  overflow: hidden;
  margin-top: 80px;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.sound-toggle {
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    background 0.3s ease;
  z-index: 999;
  transform: translate(-50%, -50%);
}

.sound-toggle img {
  width: 100px;
  height: 100px;
}

.video-container:hover .sound-toggle {
  opacity: 1;
}

.scaling-video {
  width: 50%;
  border-radius: 20px;
  display: block;
  transition: all 0.6s ease;
}

.scaling-video.medium {
  width: 70%;
}

.scaling-video.large {
  width: 100%;
  border-radius: 0;
}

/* video */
@media (min-width: 992px) {
  .quote-steps {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1300px) {
  .quote-modal__features {
    padding-right: 49px;
  }
  .feature-card__desc {
    min-width: 187px;
  }
}
@media (max-width: 1399.98px) {
  .pf-tabs-wrapper {
    position: relative;
  }
  .pf-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .pf-tabs::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 1250px) {
  .container-fluid {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hamburger {
    display: flex;
    order: -1;
  }
  .header .wrapper .left_list {
    display: none;
  }
  .header .right-buttons .ask_button,
  .header .right-buttons .get_free_quote_btn {
    display: none;
  }
  .header .wrapper {
    display: grid;
    /* grid-template-columns: 1fr auto 1fr; */
    gap: 12px;
    position: relative;
  }
  .header .wrapper .hamburger {
    grid-column: 1;
    justify-self: start;
  }
  .header .header-logo {
    grid-column: 2;
    justify-self: center;
  }
  .header .right-buttons {
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
  }
}
@media (max-width: 991.99px) {
  .performance-section .features-grid .features-grid__wrapper {
    grid-template-columns: 1fr;
  }
  .performance-section .features-grid .features-grid__wrapper.hover-first,
  .performance-section .features-grid .features-grid__wrapper.hover-second {
    grid-template-columns: 1fr;
  }
  .performance-section
    .features-grid__wrapper.hover-first
    .features-card:nth-child(2),
  .performance-section
    .features-grid__wrapper.hover-second
    .features-card:nth-child(1) {
    opacity: 1;
  }
  .restaurant-packages-section .rp-compact-mid,
  .restaurant-packages-section .rp-compact-right {
    border-left: none;
    border-top: 1px solid #e8e8e8;
    padding-left: 12px;
    padding-top: 20px;
    margin-top: 20px;
  }
  .restaurant-packages-section .rp-or-text {
    position: static;
    transform: none;
    text-align: center;
    margin-top: 16px;
  }
  .rates-starting-section {
    height: 260px;
  }
  .rates-starting-section .subtitle,
  .rates-starting-section .highlight-sub {
    font-size: 24px;
  }
  .rates-starting-section .main-text {
    font-size: 40px;
  }
  .rates-starting-section .highlight-value {
    font-size: 100px;
  }
  .eliminate-fees-section {
    height: 260px;
  }
  .eliminate-fees-section .ef-subtitle {
    font-size: 24px;
  }
  .eliminate-fees-section .ef-heading {
    font-size: 40px;
  }
  .pf-image-wrapper {
    margin-top: 1.8rem;
  }
  .compact-box .compact-right {
    margin-top: 30px;
  }
  .contact-list {
    max-width: 100%;
  }
  .resource-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer_right_grid {
    gap: 38px;
  }
  .footer_right_grid {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .quote-step {
    padding: 35px 26px;
  }
  .quote-step__title {
    font-size: 24px;
  }
  .quote-modal__features {
    grid-template-columns: 1fr;
  }
  .quote-modal__subheading {
    margin-bottom: 18px;
  }
  .quote-modal__left,
  .quote-modal__right {
    padding: 40px 20px;
    min-height: auto;
  }
  .quote-modal__right {
    padding-bottom: 0;
  }
  .performance-section .features-card.online-ordering .image img {
    transform: scale(0.69);
  }
  .testimonial-card {
    gap: 65px;
  }
  .quote-modal {
    grid-template-columns: 1fr;
    max-height: 95vh;
    max-height: min(95vh, 95dvh);
    max-height: -webkit-fill-available;
    overflow-y: auto;
  }
  .quote-modal-overlay {
    /* padding: 20px 16px; */
    padding-top: max(20px, env(safe-area-inset-top));
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    align-items: center;
  }
  .quote-modal__left {
    order: 2;
    padding: 28px 24px;
  }

  .performance-section {
    margin-top: -70px;
  }
}
@media (max-width: 768px) {
  .rates-starting-section .subtitle,
  .rates-starting-section .highlight-sub {
    font-size: 18px;
  }
  .rates-starting-section .main-text {
    font-size: 28px;
  }
  .rates-starting-section .highlight-value {
    font-size: 70px;
  }
  .eliminate-fees-section {
    height: 220px;
  }
  .eliminate-fees-section .ef-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .eliminate-fees-section .ef-heading {
    font-size: 28px;
  }
  .contact-info .contact-heading {
    font-size: 28px;
  }
  .contact-form-box {
    padding: 28px 24px;
  }
  .footer-links__heading {
    font-size: 18px;
  }
  .footer-links__list a,
  .footer-links__list span {
    font-size: 15px;
  }
  .footer-links__tagline {
    margin-bottom: 14px;
  }
  .quote-modal__right {
    order: 1;
  }
  .quote-modal__heading {
    font-size: 22px;
  }
  .quote-modal__subheading {
    font-size: 18px;
  }
  .chat-popup {
    padding: 0;
    align-items: stretch;
  }
  .chat-popup::before {
    background: #fff;
  }
  .chat-popup__window {
    max-width: none;
    max-height: none;
    height: 100%;
    min-height: 100dvh;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    border-radius: 0;
    box-sizing: border-box;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .chat-popup__footer {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .chat-popup__greeting {
    margin-bottom: 24px;
  }

  .chat-popup__suggestions {
    margin-top: auto;
  }
  .video-section {
    margin-top: 38px;
  }
  .testimonial-card {
    gap: 30px;
  }
  .performance-section {
    margin-top: -50px;
  }

  .chat-popup {
    padding: 0;
    align-items: stretch;
    background: #fff;
    overflow: hidden;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .chat-popup::before {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: -1;
    min-height: 100svh;
    min-height: 100dvh;
  }

  body.chat-open {
    background: #fff !important;
  }

  .performance-videocards-wrap.videocards-loading,
  .performance-videocards-wrap.videocards-loading .performance-videocards,
  .performance-videocards-wrap.videocards-loading
    .performance-videocards__item {
    min-height: 300px;
  }
}

@media (max-width: 600px) {
  /* .performance-videocards {
    flex-direction: column;
  } */
  .performance-videocards__item {
    max-width: 100%;
  }
  .performance-section h3.title {
    font-size: 50px;
  }
  .performance-section .collaboration_box .collaboration_container {
    gap: 15px;
  }
  .performance-section .collaboration_box .collaboration_container .logo-stack {
    gap: 18px;
  }
  .performance-section
    .collaboration_box
    .collaboration_container
    .logo-stack
    img {
    width: 105px;
  }
  .restaurant-packages-section .rp-toggle-wrapper::before,
  .restaurant-packages-section .rp-toggle-wrapper::after {
    width: calc(50% - 130px);
  }
  .stay-connected {
    padding: 60px 0 32px 0;
  }
  .quote-step {
    padding: 28px 20px;
  }
  .quote-modal__close {
    display: flex;
  }
  .clients-slider-section {
    padding: 40px 0;
  }
  .faq-answer p {
    padding-right: 0;
    font-size: 18px;
  }

  .performance-section .collaboration_box .collaboration_container .logo-stack {
    gap: 0;
  }

  .performance-section
    .collaboration_box
    .collaboration_container
    .logo-stack
    img {
    width: 98px;
    height: 30px;
  }
}
@media (max-width: 576px) {
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header .header-logo img {
    height: 32px;
  }
  .header .right-buttons .sign_in_btn {
    height: 36px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .performance-section h3.title {
    margin-bottom: 20px;
  }
  .performance-section p {
    font-size: 16px;
  }
  .performance-section .collaboration_box {
    padding: 40px 22px;
  }
  .performance-section .features-grid .features-card {
    height: auto;
  }
  .performance-section .features-grid .features-card h4,
  .performance-section .collaboration_box .collaboration_container .left h4 {
    font-size: 24px;
  }
  .performance-section .features-card.online-ordering .image img {
    transform: scale(1);
  }
  .performance-section
    .features-grid__wrapper.hover-second
    .features-card.online-ordering
    .image
    img {
    transform: scale(1.09);
    /* transform: scale(1.04); */
  }
  .performance-section
    .features-grid__wrapper.hover-first
    .features-card.online-ordering
    .image
    img {
    transform: scale(0.95);
  }
  .performance-section
    .features-grid__wrapper.hover-first
    .features-card:nth-child(1)
    .table-image {
    margin-top: 55px;
  }
  .performance-section .features-grid .features-card.online-ordering .image {
    margin-top: 30px;
  }
  .eliminate-fees-section {
    height: 180px;
    margin-top: 40px;
  }
  .eliminate-fees-section .ef-subtitle {
    font-size: 14px;
  }
  .eliminate-fees-section .ef-heading {
    font-size: 20px;
  }
  .platform-features-section,
  .performance-section,
  .restaurant-packages-section {
    padding: 40px 0;
  }
  .restaurant-packages-section .rp-subtitle {
    margin-bottom: 35px;
  }
  .contact-section {
    padding: 40px 0;
  }
  .contact-info .contact-sub {
    margin-bottom: 24px;
  }
  .faq-subtitle {
    margin-bottom: 10px;
  }
  .faq-question {
    font-size: 20px;
  }
  .resource-cards__grid {
    grid-template-columns: 1fr;
  }
  .resource-card {
    min-height: 240px;
  }
  .footer_right_grid {
    gap: 28px;
  }
  .footer-links__heading {
    margin-bottom: 8px;
  }
  footer .terms_conditions {
    justify-content: flex-start;
    gap: 14px;
    padding: 24px 12px;
  }
  .testimonial-content p {
    font-size: 18px;
  }
  .contact-list {
    margin-bottom: 25px;
  }
  .performance-section {
    margin-top: 0;
    border-radius: 0;
  }

  .performance-videocards-wrap.videocards-loading,
  .performance-videocards-wrap.videocards-loading .performance-videocards,
  .performance-videocards-wrap.videocards-loading
    .performance-videocards__item {
    min-height: 200px;
  }
}
@media (max-width: 520px) {
  .compact-box .compact-right .reviews_col::before,
  .compact-box .compact-right .reviews_col::after {
    display: none;
  }
  .compact-box .compact-right {
    flex-wrap: wrap;
    gap: 20px;
  }
  .stay-connected__form {
    gap: 12px;
  }
  .stay-connected__btn {
    width: 100%;
  }
  .quote-step {
    padding: 28px 18px;
  }
  .quote-modal-overlay {
    padding-top: max(16px, env(safe-area-inset-top));
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
  .quote-step__title {
    font-size: 20px;
  }
  .quote-input-row {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    flex-wrap: wrap;
  }
}
@media (max-width: 420px) {
  .performance-section h3.title {
    font-size: 40px;
  }
  .automation-section .automation-card {
    padding: 34px 20px;
  }
  .testimonial-content p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .testimonial-author h4 {
    font-size: 22px;
  }
  .testimonial-author p {
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  .chat-popup__body {
    padding: 24px 13px;
  }
  .chat-popup__header,
  .chat-popup__footer,
  .chat-popup__header {
    padding: 16px 13px;
  }
  .chat-popup__suggestion {
    font-size: 12px;
  }

  .performance-section
    .collaboration_box
    .collaboration_container
    .logo-stack
    img {
    width: 82px;
  }
}
