*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --purple: #92278F;
  --dark: #1D1D1D;
  --text-body: #333333;
  --light-gray: #F8F8F8;
  --white: #FFFFFF;
  --pink-circle: #FFD6FE;
  --green-check: #8CC541;
}
html { scroll-behavior: auto; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1920px; margin: 0 auto; padding: 0 60px; width: 100%; }
.italic-serif { font-family: 'DM Serif Text', serif; font-style: italic; font-weight: 200; }

#canvas3d-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 500;
}
#canvas3d-container canvas {
  width: 100% !important;
  height: 100% !important;
}

.snap-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}

.section-hero {
  padding-top: 140px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ===== ANIMATION INITIAL STATES ===== */
.hero-left { opacity: 0; transform: translateX(-80px); }
.hero-subheading, .hero-title, .hero-desc, .btn-get-started {
  opacity: 0; transform: translateY(40px);
}
.partners-heading { opacity: 0; transform: translateY(20px); }
.partner-left { opacity: 0; transform: translateX(-60px); }
.partner-right { opacity: 0; }
.features-header h2,
.features-header p { opacity: 0; transform: translateY(40px); }
.features-panel { opacity: 0; transform: translateX(80px); }
.features-blob-anim { opacity: 0; transform: scale(0.5); }
.order-right-left { opacity: 0; transform: translateX(-80px); }
.order-right-circle-outer,
.order-right-circle-mid,
.order-right-circle-inner { opacity: 0; transform: scale(0.5); }
.menu-custom-left { opacity: 0; transform: translateX(-80px); }
.menu-custom-right { opacity: 0; transform: translateX(80px); }
.rugged-header h2,
.rugged-header p { opacity: 0; transform: translateY(40px); }
.rugged-glass-card { opacity: 0; transform: translateY(30px); }
.versatile-left { opacity: 0; transform: translateX(-80px); }
.versatile-card { opacity: 0; transform: translateY(30px); }
.section-testimonials {
  position: relative;
  z-index: 600;
  background: var(--white);
}
.testimonials-header h2 { opacity: 0; transform: translateY(40px); }
.receipt-left { opacity: 0; transform: translateX(-80px); }
.receipt-title { opacity: 0; transform: translateY(40px); }
.receipt-desc { opacity: 0; transform: translateY(40px); }
.btn-schedule-demo { opacity: 0; transform: translateY(40px); }
.receipt-pink-circle { opacity: 0; transform: scale(0); }
.receipt-blob { opacity: 0; transform: scale(0); }
.receipt-circle-img { opacity: 0; transform: translate(-50%, -50%) scale(0); }
.receipt-device-img { opacity: 0; transform: translate(-50%, -50%) scale(0); }
body.scrollbar-dragging #canvas3d-container {
  opacity: 0;
  transition: opacity 0.2s;
}

.hero-content {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 2rem 0 9rem 0;
}
.hero-left {
  flex: 1;
  max-width: 1000px;
  position: relative;
  z-index: 10;
}
.hero-subheading {
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  color: #74a534 !important;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: 64px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-desc {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 40px;
  width: 90%;
}
.btn-get-started {
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 40px;
  width: auto;
  height: auto;
  font-size: 22px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: opacity 0.3s;
  padding: 16px 3rem;
}
.btn-get-started:hover { opacity: 0.9; }
.hero-right {
  flex: 1;
  display: none;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-device-img {
  width: 587px;
  height: 526px;
  object-fit: contain;
}
.hero-device-fallback { display: none; }

.partners-row {
  padding: 40px 0 80px;
  position: relative;
  z-index: 10;
}
.partners-heading {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-body);
  margin-bottom: 40px;
  position: relative;
}
.partners-heading::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 10%;
  height: 2px;
  left: 25% !important;
  background: linear-gradient(90deg, #FFFFFF 6.59%, #808080 100%);
}
.partners-heading::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 10%;
  height: 2px;
  right: 25% !important;
  background: linear-gradient(270deg, #FFFFFF 6.59%, #808080 100%);
}
.partners-heading::before { left: 0; }
.partners-heading::after { right: 0; }
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.partners-logos img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}
.partners-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===== FEATURES SECTION ===== */
.section-features {
  padding: 6rem 0 6.25rem 0;
  background: var(--white);
}
.features-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}
.features-header h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 10px;
}
.features-header p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-body);
  max-width: 1000px;
  margin: 0 auto;
}
.features-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 10;
}
.features-visual {
  width: 42%;
  height: auto;
  position: relative;
  flex-shrink: 0;
}

/* ===== FEATURES BLOB (replaces rings) ===== */
.features-blob-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.features-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
}
.features-blob svg {
  width: 100%;
  height: 100%;
}
.features-blob-small {
  width: 70%;
  height: 70%;
}

.features-device-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: auto;
  z-index: 2;
}
.features-device-fallback { display: none; }
.features-panel {
  flex: 1;
  background: var(--light-gray);
  border-radius: 22px;
  padding: 1.5rem 1.5rem;
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  position: relative;
  z-index: 10;
  width: 59%;
}
.features-panel-desc {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 8px;
}
.features-panel-title {
  font-size: 1.85rem !important;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 0px;
}
.accordion-item-terminal {
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
}
.accordion-header-terminal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0px;
  cursor: pointer;
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
}
.accordion-header-terminal .accordion-icon-terminal {
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.3s;
  color: #74a534;
  flex-shrink: 0;
  margin-left: 16px;
}
.accordion-item-terminal.active .accordion-header-terminal { color: var(--dark); }
.accordion-item-terminal.active .accordion-header-terminal .accordion-icon-terminal { transform: rotate(45deg); }
.accordion-body-terminal {
  max-height: 0;
  overflow: hidden;
  /* GSAP handles transitions to prevent jerk */
}
.accordion-body-inner-terminal {
  padding: 0px 0px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-body);
  margin-top: 0.5rem !important;
}
.btn-request-demo {
  margin-top: 30px;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 40px;
  padding: 18px 40px;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: opacity 0.3s;
}
.btn-request-demo:hover { opacity: 0.9; }

/* ===== ORDER RIGHT ===== */
.section-order-right {
  padding: 100px 0 30px 0;
  background: var(--white);
}
.order-right-layout {
  display: flex;
  align-items: center;
  gap: 40px;
}
.order-right-left {
  flex: 1;
  max-width: 760px;
  position: relative;
  z-index: 10;
}
.order-right-label {
  font-size: 28px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 16px;
}
.order-right-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--dark);
  line-height: 72px;
  margin-bottom: 16px;
}
.order-right-desc {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-body);
  margin-bottom: 40px;
}
.order-right-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.order-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem 1.5rem;
  min-height: 98px;
  border: 1px solid #eee;
}
.order-card-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.order-card-icon svg { width: 100%; height: 100%; }
.order-card p {
  font-size: 26px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
}
.order-right-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.order-right-circles {
  position: relative;
  width: 500px;
  height: 500px;
}
.order-right-circle-outer {
  position: absolute;
  top: 0; left: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px dashed rgba(140, 197, 65, 0.3);
}
.order-right-circle-mid {
  position: absolute;
  top: 50px; left: 50px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px dashed rgba(140, 197, 65, 0.2);
}
.order-right-circle-inner {
  position: absolute;
  top: 100px; left: 100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px dashed rgba(140, 197, 65, 0.15);
}
.order-right-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: auto;
  z-index: 2;
}
.order-right-fallback { display: block !important; width: 40% }

/* ===== MENU CUSTOMIZATION ===== */
.section-menu-custom {
  padding: 100px 0;
  background-image: url('../images/subtracted_bg_terminal.png');
  background-size: 100% 90%;
  background-repeat: no-repeat;
  background-position: bottom;
}
.menu-custom-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}
.menu-custom-left {
  flex: 1;
  position: relative;
  z-index: 1;
}
.menu-custom-img {
  width: 100%;
  max-width: 600px;
  height: auto;
}
.menu-custom-fallback { display: none; }
.menu-custom-right {
  flex: 1;
  max-width: 700px;
  position: relative;
  z-index: 10;
  margin-right: 7rem !important;
}
.menu-custom-title {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 24px;
}
.menu-custom-desc {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  color: var(--text-body);
  margin-bottom: 40px;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.check-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.check-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.check-icon svg { width: 100%; height: 100%; }
.check-item p {
  font-size: 30px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.4;
}

/* ===== RUGGED ===== */
.section-rugged {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.rugged-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 0;
}
.rugged-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
.rugged-content {
  position: relative;
  z-index: 10;
  width: 100%;
}
.rugged-header {
  text-align: center;
  margin-bottom: 60px;
}
.rugged-header h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.rugged-header p {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-body);
  max-width: 1000px;
  margin: 0 auto;
}
.rugged-body {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}
.rugged-device-center {
  width: 744px;
  max-width: 50%;
  height: auto;
  position: relative;
  z-index: 2;
}
.rugged-fallback { display: none; }
.rugged-glass-card {
  position: absolute;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.12) 40%,
    rgba(255, 255, 255, 0.18) 100%
  );

  -webkit-backdrop-filter: blur(4px) saturate(1.8) brightness(1.05);
  backdrop-filter: blur(4px) saturate(1.8) brightness(1.05);
  border-radius: 24px;
  padding: 2rem 2rem;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-top-color: rgba(255, 255, 255, 0.7);
  border-left-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    inset 0 -1px 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              background 0.3s ease;
  overflow: hidden;
}

.rugged-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.05) 60%,
    transparent 100%
  );
  border-radius: 24px 24px 0 0;
  pointer-events: none;
  z-index: 1;
}
.rugged-glass-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.15) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
               linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
  z-index: 0;
}
.rugged-glass-card:nth-child(1) .card-icon-box {
  max-width: 40% !important;
}
.rugged-glass-card .card-icon-box {
  max-width: 17%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem !important;
}
.rugged-glass-card .card-icon-box img {
  width: 100%;
  height: 100%;
}
.rugged-glass-card p {
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
}
.rugged-card-1 {
  width: 466px;
  height: auto;
  top: 2%;
  right: 8%;
}
.rugged-card-2 {
  width: 466px;
  height: auto;
  bottom: 22%;
  left: 10%;
}
.rugged-card-3 {
  width: 510px;
  height: auto;
  bottom: 4%;
  right: 12%;
}

.rugged-glass-card:hover {
  transform: translateY(-4px) scale(1.01);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.18) 40%,
    rgba(255, 255, 255, 0.25) 100%
  );
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.06),
    inset 0 1px 2px rgba(255, 255, 255, 0.7),
    inset 0 -1px 1px rgba(255, 255, 255, 0.15);
}

.rugged-glass-card > * {
  position: relative;
  z-index: 2;
}

/* ===== VERSATILE ===== */
.section-versatile {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}
.versatile-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 0;
}
.versatile-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 50%, transparent 100%);
  z-index: 1;
}
.versatile-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 40px;
  max-height: 100vh;
  overflow: hidden;
}
.versatile-left {
  max-width: 570px;
  margin-left: 7rem !important;
  margin-top: 5rem !important;
}
.versatile-left .label {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.versatile-left h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.versatile-left p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.versatile-right {
  width: 570px;
  height: calc(100vh - 420px);
  max-height: 530px;
  overflow-y: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: none;
  margin-left: 7rem !important;
}
.versatile-right::-webkit-scrollbar { display: none; }
.versatile-card {
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.05) 40%,
    rgba(255, 255, 255, 0.08) 100%
  );
  -webkit-backdrop-filter: blur(40px) saturate(1.6) brightness(1.1);
  backdrop-filter: blur(40px) saturate(1.6) brightness(1.1);
  border-radius: 20px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.35);
  border-left-color: rgba(255, 255, 255, 0.25);

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    inset 0 -1px 1px rgba(255, 255, 255, 0.05);

  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              background 0.3s ease;
}
.versatile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 100%
  );
  border-radius: 20px 20px 0 0;
  pointer-events: none;
  z-index: 1;
}

.versatile-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25) 0%,
    transparent 35%,
    transparent 65%,
    rgba(255, 255, 255, 0.1) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
               linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
  z-index: 0;
}
.versatile-card:hover {
  transform: translateY(-3px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.08) 40%,
    rgba(255, 255, 255, 0.12) 100%
  );
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.35),
    inset 0 -1px 1px rgba(255, 255, 255, 0.08);
}

.versatile-card > * {
  position: relative;
  z-index: 2;
}
.versatile-card h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.versatile-card p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255,255,255,0.75);
}

.versatile-card:nth-last-child(1) {
  margin-bottom: 1rem !important;
}

/* ===== TESTIMONIALS ===== */
.section-testimonials {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}
.testimonials-header h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}
.testimonials-carousel {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 50px;
  transition: transform 0.5s ease;
  padding: 0 0 40px;
}
.testimonial-card {
  flex-shrink: 0;
  width: 1213px;
  min-height: 515px;
  background: var(--light-gray);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.testimonial-quote {
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
  color: var(--dark);
  margin-bottom: 40px;
  max-width: 900px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ddd;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-author-info h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
}
.testimonial-author-info p {
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
  color: var(--text-body);
}
.testimonial-quote-icon {
  position: absolute;
  bottom: -15px;
  right: 40px;
  width: 99px;
  height: 125px;
  background-color: #fff !important;
  border-radius: 45% 45% 0 0;
  display: inline-flex;
  align-items: end;
  padding: 0.8rem;
}
.testimonial-quote-icon svg {
  width: 99px;
  height: 70px;
}

/* ===== RECEIPT / CTA — animated blobs ===== */
.section-receipt {
  padding: 100px 0;
  background: var(--white);
}
.receipt-circle-img.receipt-fallback,
.receipt-device-img.receipt-fallback {
  display: block !important;
}
.receipt-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}
.receipt-left {
  flex: 1;
  max-width: 812px;
  position: relative;
  z-index: 10;
}
.receipt-title {
  font-size: 68px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 30px;
}
.receipt-desc {
  font-size: 34px;
  font-weight: 400;
  line-height: 44px;
  color: var(--text-body);
  margin-bottom: 40px;
  max-width: 660px;
}
.btn-schedule-demo {
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 40px;
  padding: 22px 50px;
  font-size: 22px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: opacity 0.3s;
}
.btn-schedule-demo:hover { opacity: 0.9; }
.receipt-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.receipt-circles {
  position: relative;
  width: 724px;
  height: 724px;
}
.receipt-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
}
.receipt-blob-1 {
  width: 724px;
  height: 724px;
  top: 0; left: 0;
  background: radial-gradient(circle, rgba(255,214,254,0.5) 0%, rgba(245,192,243,0.3) 60%, rgba(232,165,230,0.1) 100%);
}
.receipt-blob-2 {
  width: 620px;
  height: 620px;
  top: 52px; left: 52px;
  background: radial-gradient(circle, rgba(255,224,253,0.4) 0%, rgba(255,214,254,0.2) 100%);
}
.receipt-pink-circle {
  position: absolute;
  top: 0; left: 0;
  width: 724px;
  height: 724px;
  border-radius: 50%;
  background: var(--pink-circle);
}
.receipt-circle-img {
  position: absolute;
  top: 65%;
  left: 100%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: auto;
  z-index: 1;
  opacity: 0;
  will-change: transform, opacity;
}
.receipt-device-img {
  position: absolute;
  top: 65%;
  left: 100%;
  transform: translate(-50%, -50%) scale(0);
  width: 62%;
  height: auto;
  z-index: 2;
  opacity: 0;
  will-change: transform, opacity;
}
.receipt-pink-circle {
  display: none;
}
.receipt-blob-1,
.receipt-blob-2 {
  display: none;
}
.receipt-circles {
  position: relative;
  width: 724px;
  height: 724px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1536px) {
  .receipt-circles { width: 600px; height: 600px; }
}
@media (max-width: 1366px) {
  .receipt-circles { width: 500px; height: 500px; }
}
@media (max-width: 1180px) {
  .receipt-circles { width: 420px; height: 420px; }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1536px) {
  .container { max-width: 1300px; padding: 0 50px; }
  .hero-title { font-size: 56px; }
  .hero-desc { font-size: 24px; }
  .receipt-title { font-size: 60px; }
  .receipt-desc { font-size: 30px; }
  .receipt-circles { width: 600px; height: 600px; }
  .receipt-pink-circle { width: 600px; height: 600px; }
  .receipt-blob-1 { width: 600px; height: 600px; }
  .receipt-blob-2 { width: 500px; height: 500px; top: 50px; left: 50px; }
  .versatile-right { width: 520px; height: calc(100vh - 420px); max-height: 440px; }
}
@media (max-width: 1440px) {
  .container { max-width: 1200px; padding: 0 40px; }
  .testimonial-card { width: 1000px; min-height: 450px; padding: 50px; }
  .testimonial-quote { font-size: 34px; line-height: 42px; }
  .versatile-right { width: 500px; height: calc(100vh - 420px); max-height: 420px; }
  .rugged-card-1, .rugged-card-2 { width: 400px; min-height: 250px; }
  .rugged-card-3 { width: 440px; min-height: 250px; }
  .rugged-body { min-height: 550px; }
}
@media (max-width: 1366px) {
  .hero-title { font-size: 45px; max-width: 600px;}
  .hero-device-img { width: 480px; height: auto; }
  .features-visual { width: 500px; height: 500px; }
  .receipt-title { font-size: 52px; }
  .receipt-desc { font-size: 26px; line-height: 36px; }
  .receipt-circles { width: 500px; height: 500px; }
  .receipt-pink-circle { width: 500px; height: 500px; }
  .receipt-blob-1 { width: 500px; height: 500px; }
  .receipt-blob-2 { width: 420px; height: 420px; top: 40px; left: 40px; }
  .versatile-left h2 { font-size: 42px; }
  .versatile-right { width: 480px; height: calc(100vh - 400px); max-height: 400px; }
  .hero-desc {
    font-size: 24px;
    max-width: 600px;
  }
  .container {
    max-width: 1200px;
    padding: 0 0;
  }
  .hero-content {
    padding: 0 0 0 0;
  }
  .partners-heading::before {
    left: 18% !important;
  }
  .partners-heading::after {
    right: 18% !important;
  }
}
@media (max-width: 1180px) {
  .hero-title { font-size: 44px; }
  .hero-desc { font-size: 22px; }
  .hero-device-img { width: 400px; }
  .features-visual { width: 400px; height: 400px; }
  .order-card p { font-size: 24px; }
  .check-item p { font-size: 24px; }
  .versatile-right { width: 450px; height: calc(100vh - 380px); max-height: 360px; }
  .versatile-left h2 { font-size: 38px; }
  .versatile-card h3 { font-size: 22px; }
  .versatile-card p { font-size: 18px; }
  .versatile-card { min-height: 100px; padding: 20px 24px; }
  .rugged-card-1 { top: -3%; right: 0; width: 360px; min-height: 220px; padding: 24px; }
  .rugged-card-2 { bottom: 8%; left: 0; width: 360px; min-height: 220px; padding: 24px; }
  .rugged-card-3 { bottom: -10%; right: 2%; width: 380px; min-height: 220px; padding: 24px; }
  .rugged-body { min-height: 500px; }
  .rugged-card-1 p, .rugged-card-2 p, .rugged-card-3 p { font-size: 18px; }
  .receipt-title { font-size: 44px; }
  .receipt-desc { font-size: 24px; line-height: 34px; }
  .receipt-circles { width: 420px; height: 420px; }
  .receipt-pink-circle { width: 420px; height: 420px; }
  .receipt-blob-1 { width: 420px; height: 420px; }
  .receipt-blob-2 { width: 350px; height: 350px; top: 35px; left: 35px; }
}
@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .section-hero { padding-top: 100px; }
  .hero-content { flex-direction: column; text-align: center; }
  .hero-left { max-width: 100%; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-right { display: none; }
  .hero-title { font-size: 40px; }
  .features-layout { flex-direction: column; }
  .features-visual { width: 100%; max-width: 500px; height: 400px; margin: 0 auto; }
  .order-right-layout { flex-direction: column; }
  .order-right-right { display: none; }
  .order-card p { font-size: 22px; }
  .menu-custom-layout { flex-direction: column; }
  .menu-custom-left { display: none; }
  .menu-custom-right { max-width: 100%; }
  .check-item p { font-size: 22px; }
  .rugged-body { flex-direction: column; gap: 40px; min-height: auto; }
  .rugged-glass-card { position: relative !important; width: 100% !important; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; min-height: auto !important; }
  .rugged-device-center { max-width: 400px; width: 100%; }

  .versatile-content { align-items: stretch; }
  .versatile-left { max-width: 100%; }
  .versatile-right { width: 100%; height: 400px; max-height: 400px; overflow-y: auto; }
  .receipt-layout { flex-direction: column; text-align: center; }
  .receipt-right { display: none; }
  .receipt-title { font-size: 40px; }
  .receipt-desc { font-size: 22px; line-height: 32px; margin: 0 auto 40px; }
  .testimonial-card { width: 90vw; min-height: auto; padding: 40px; }
  .testimonial-quote { font-size: 28px; line-height: 36px; }
  .partners-logos { gap: 30px; }
  .partners-logos img { height: 36px; }
  .snap-section { min-height: auto; }
}
@media (max-width: 820px) {
  .order-right-right { display: none !important; }
  .container { padding: 0 30px; }
  .hero-title { font-size: 36px; }
  .features-header h2, .order-right-title, .menu-custom-title,
  .rugged-header h2, .versatile-left h2, .testimonials-header h2,
  .order-right-title { line-height: 48px; }
  .receipt-title { font-size: 36px; }
  .receipt-desc { font-size: 20px; }
  .order-right-desc { font-size: 20px; line-height: 30px; }
  .menu-custom-desc { font-size: 20px; line-height: 30px; }
  .features-header p { font-size: 20px; }
  .features-panel-desc { font-size: 18px; }
  .features-panel-title { font-size: 26px; }
  .order-right-label { font-size: 24px; }
  .versatile-left .label { font-size: 18px; }
  .versatile-left p { font-size: 20px; }
  .versatile-overlay { width: 70%; }
  .features-panel {width: 100%; max-width: 100%; }
  .menu-custom-right {
    margin-right: 0 !important;
  }
  .mobile_terminal_image {
    display: block !important;
  }
  section{
    overflow: hidden;
  }
  .hero-right {
    display: block !important;
    padding: 6rem 6rem;
  }
  .versatile-content {
    padding-top: 2rem !important;
  }
  .versatile-left {
    margin-left: 0 !important;
    margin-top: 0rem !important;
  }
  .versatile-right {
    margin-left: 0 !important;
  }
}
@media (max-width: 712px) {
  #canvas3d-container { display: none; }
  .hero-title { font-size: 32px; }
  .hero-desc { font-size: 20px; }
  .hero-subheading { font-size: 18px; }
  .features-header h2, .order-right-title, .menu-custom-title,
  .rugged-header h2, .versatile-left h2, .testimonials-header h2,
  .features-blob-container { display: none; }
  .versatile-right { height: 350px; max-height: 350px; }
  .versatile-overlay { width: 100%; background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.5) 100%); }
  .testimonial-card { padding: 30px; }
  .testimonial-quote { font-size: 24px; line-height: 32px; }
  .accordion-header-terminal { font-size: 20px; }
  .order-right-desc { font-size: 18px; line-height: 28px; }
  .menu-custom-desc { font-size: 18px; line-height: 28px; }
  .order-card p { font-size: 20px; }
  .check-item p { font-size: 20px; }
  .rugged-header p { font-size: 20px; }
  .section-rugged { min-height: auto; }
  .section-versatile { min-height: auto; }
  .hero-content {
    padding-bottom: 0 !important;
  }
  .partners-row {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (max-width: 480px) {
  .section-hero { padding-top: 80px; }
  .container { padding: 0 20px; }
  .hero-title { font-size: 28px; }
  .hero-desc { font-size: 18px; }
  .btn-get-started { width: 240px; height: 65px; font-size: 18px; }
  .features-header h2, .order-right-title, .menu-custom-title,
  .rugged-header h2, .versatile-left h2, .testimonials-header h2,
  .order-right-title { line-height: 40px; }
  .order-card p { font-size: 18px; }
  .order-card { padding: 16px 20px; min-height: auto; }
  .check-item p { font-size: 18px; }
  .features-visual { height: 300px; }
  .rugged-glass-card p { font-size: 16px; }
  .versatile-card h3 { font-size: 20px; }
  .versatile-card p { font-size: 16px; }
  .versatile-right { height: 300px; max-height: 300px; }
  .versatile-card { min-height: 90px; padding: 16px 20px; }
  .testimonial-card { width: 98%; padding: 24px; }
  .testimonial-quote { font-size: 20px; line-height: 28px; }
  .testimonial-author-info h4 { font-size: 20px; }
  .receipt-title { font-size: 28px; }
  .receipt-desc { font-size: 18px; line-height: 28px; }
  .partners-logos img { height: 28px; }
  .partners-heading { font-size: 16px; }
  .snap-section { padding: 60px 0 0 0; }
  .section-features, .section-order-right, .section-menu-custom,
  .section-testimonials, .section-receipt, { padding: 60px 0; }
  .testimonial-quote-icon {
    bottom: 15px;
    right: 0;
    width: 99px;
    height: 100px;
    border-radius: 50% 0% 0% 50%;
  }
  .testimonials-track { gap: 83px !important; }
  .accordion-body-inner-terminal { font-size: 16px; }
  .features-panel { padding: 1.5rem; }
  .btn-request-demo { padding: 14px 30px; font-size: 18px; }
  .order-right-label { font-size: 22px; }
  .order-right-desc { font-size: 16px; line-height: 26px; }
  .menu-custom-desc { font-size: 16px; line-height: 26px; }
  .rugged-header p { font-size: 18px; }
  .btn-schedule-demo { padding: 18px 36px; font-size: 20px; }
  .section-rugged { padding: 60px 0; }
  .rugged-glass-card { padding: 20px; }
}
@media (max-width: 390px) {
  .hero-title { font-size: 26px; }
  .hero-desc { font-size: 16px; }
  .features-header h2, .order-right-title, .menu-custom-title,
  .rugged-header h2, .versatile-left h2, .testimonials-header h2,
  .receipt-title { font-size: 24px; }
  .receipt-desc { font-size: 16px; line-height: 24px; }
  .btn-get-started { width: 220px; height: 58px; font-size: 16px; }
  .btn-schedule-demo { padding: 16px 30px; font-size: 18px; }
  .order-card p { font-size: 16px; }
  .check-item p { font-size: 16px; }
  .versatile-card h3 { font-size: 18px; }
  .versatile-card p { font-size: 14px; }
  .testimonial-quote { font-size: 18px; line-height: 26px; }
  .testimonial-author-info h4 { font-size: 18px; }
  .testimonial-author-info p { font-size: 14px; }
  .partners-logos { gap: 20px; }
}
#canvas3d-container.pose-rugged { z-index: 1; }
.hero-bg-canvas {
  position: absolute;
  top: 0;
  left: -5%;
  width: calc(100% + 20%);
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  transform: rotate(15deg);
}
.hero-bg-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.mobile_terminal_image {
  display: none;
}

.bg_animated_blob {
  position: absolute;
  top: 0;
  left: -23%;
  width: 90%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  will-change: transform, opacity;
}

.bg_animated_blob img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position:relative;
  top: 5rem;
}


/* EXACT FIX - CONTINUOUS WAVE WITHOUT HIDING ANY LINE */
.order-right-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ring_animation {
  position: relative;
  width: 100%;
  height: 620px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rings {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.rings svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  transform: translate(-50%, -50%) scale(var(--base-scale));
  animation: steadyWavePulse 2s ease-in-out infinite;
}

.rings svg:nth-child(1) {
  --base-scale: 0.55;
  animation-delay: 0s;
}
.rings svg:nth-child(2) {
  --base-scale: 0.75;
  animation-delay: 0.4s;
}
.rings svg:nth-child(3) {
  --base-scale: 1.05;
  animation-delay: 0.8s;
}
@keyframes steadyWavePulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(var(--base-scale));
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(calc(var(--base-scale) + 0.05));
    opacity: 1;
  }
}

.order-right-img {
  position: relative;
  z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 1366px) { .ring_animation { width: 450px; height: 450px; } }
@media (max-width: 1024px) { .ring_animation { width: 400px; height: 400px; } }
@media (max-width: 768px)  { .ring_animation { width: 350px; height: 350px; } }
@media (max-width: 480px)  { .ring_animation { width: 280px; height: 280px; } }


.partners_3d {
  padding: 0 0 24px;
}

.hero_3d .partners_3d .container {
  display: block !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  width: 100%;
}

.partners_3d .partners-title {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  font-size: 1.5rem !important;
  font-weight: 600;
  text-align: center;
  color: #444;
}

.partners_3d .partners-title::before,
.partners_3d .partners-title::after {
  content: "";
  height: 2px;
  width: 157px;
  flex: none;
  opacity: 0.4;
}

.partners_3d .partners-title::before{background: transparent linear-gradient(90deg, #fff 0%, gray 100%) 0% 0% no-repeat padding-box;}
.partners_3d .partners-title::after{background: transparent linear-gradient(270deg, #fff 0%, gray 100%) 0% 0% no-repeat padding-box;}
.partners_3d .partners-row {
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.partners_3d .partners-row img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 980px) {
  .partners_3d .partners-row {
    justify-content: center;
  }
  .partners_3d .partners-title::before,
  .partners_3d .partners-title::after {
    width: 60px;
  }
}

@media screen and (max-width: 768px) {
  .partners_3d .partners-title{gap: 9px}
  .partners_3d .partners-title::before, .partners_3d .partners-title::after{width: 30px}
  .partners_3d{position: relative; z-index: 8; background-color: #fff; padding: 50px 0}
  .partners_3d .partners-row img{height: 36px;}
}

@media only screen and (min-width: 900px) and (max-width: 1180px) and (orientation: landscape) {
  .partners_3d{margin-top: 0 !important}
}

@media screen and (min-width: 1025px) and (max-width: 1536px) and (-webkit-min-device-pixel-ratio: 1.25),
       screen and (min-width: 1025px) and (max-width: 1536px) and (min-resolution: 120dpi) {

          .partners_3d {
            margin-top: -12rem;
          }

          .partners_3d .partners-row img {
            height: 45px !important;
          }
       }


  .section-features .btn-request-demo {
    margin-top: 1.5rem !important;
    display: inline-flex !important;
  }
