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

body {
  font-family: 'Satoshi';
  background: #f8f9fa;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calculator-container {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 40px;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h1 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.header p {
  color: #000;
  font-size: 16px;
}

.main-content {
  background: black;
  border-radius: 20px;
  display: flex;
  min-height: 500px;
  overflow: hidden;
  padding: 10px;
  gap: 6px;
}
.left-panel {
  background: white;
  padding: 40px;
  flex: 1;
  border-radius: 15px;
  margin: 5px;
  width: 54%;
}

.right-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: black;
  background: white;
  padding: 20px;
  flex: 1;
  border-radius: 15px;
  margin: 5px;
  width: 40%;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  color: black;
  margin-bottom: 20px;
}
.section-title-normal-weight {
  font-weight: 400 !important;
}
.apps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.app-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 2px solid transparent;
}

.app-icon.selected {
  border-color: #3a8dde;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.app-icon:hover {
  transform: scale(1.05);
}

/* App icon styles */
.app-slack {
  background: #4a154b;
  color: white;
}
.app-teams {
  background: #5b5fc7;
  color: white;
}
.app-drive {
  background: #4285f4;
  color: white;
}
.app-zoom {
  background: #2d8cff;
  color: white;
}
.app-powerpoint {
  background: #b7472a;
  color: white;
}
.app-systems {
  background: #34495e;
  color: white;
}
.app-jira {
  background: #0052cc;
  color: white;
}
.app-miro {
  background: #ffd02f;
  color: #333;
}
.app-notion {
  background: #000;
  color: white;
}
.app-trello {
  background: #0079bf;
  color: white;
}
.app-monday {
  background: #ff3d57;
  color: white;
}
.app-figma {
  background: #f24e1e;
  color: white;
}
.app-asana {
  background: #273347;
  color: white;
}
.app-github {
  background: #24292e;
  color: white;
}
.app-confluence {
  background: #172b4d;
  color: white;
}
.app-hubspot {
  background: #ff7a59;
  color: white;
}
.app-salesforce {
  background: #00a1e0;
  color: white;
}
.app-airtable {
  background: #fcb400;
  color: white;
}
.app-zapier {
  background: #ff4a00;
  color: white;
}
.app-harvest {
  background: #fa5d00;
  color: white;
}
.app-discord {
  background: #7289da;
  color: white;
}
.app-canva {
  background: #00c4cc;
  color: white;
}
.app-webex {
  background: #00bcf2;
  color: white;
}
.app-dropbox {
  background: #3a8dde;
  color: white;
}

.slider-section {
  margin-top: 20px;
}

.slider-container {
  position: relative;
  margin: 30px 0;
}

.slider {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #e9ecef;
  outline: none;
  -webkit-appearance: none;
  position: relative;
}

.slider::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a8dde 0%, #3a8dde 100%);
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a8dde 0%, #3a8dde 100%);
  cursor: pointer;
  border: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 14px;
  color: black;
}

.slider-progress {
  position: absolute;
  top: 7.3px;
  z-index: 1;
  left: 0;
  height: 8px;
  background: linear-gradient(135deg, #3a8dde 0%, #3a8dde 100%);
  border-radius: 5px;
  transition: width 0.3s ease;
  pointer-events: none;
}

.right-panel h2 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.right-panel p {
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.5;
}
.savings-amount-title {
  font-size: 34px !important;
  font-weight: 700;
}
.savings-amount {
  font-size: 34px;
  font-weight: 700;
  margin: 20px 0;
  color: black;
}

.animated-number {
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cta-button {
  background: #3a8dde;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: fit-content;
  margin: 0 auto;
  margin-top: 20px;
}
p.cta-text {
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
  margin-bottom: 0px;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  margin-top: 30px;
  backdrop-filter: blur(10px);
}

.stars {
  color: #ffd700;
  margin-bottom: 10px;
}

.testimonial-content {
  display: flex;
  gap: 15px;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff6b6b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.testimonial-text {
  flex: 1;
  font-size: 14px;
}

.company-info {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 5px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.bounce {
  animation: bounce 0.6s;
}

@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
  }

  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  body {
    padding: 20px 10px;
}
  .calculator-container {
    padding: 0px;
  }

  .header h1 {
    font-size: 27px;
  }
  .header p {
    font-size: 14px;
}
.left-panel {padding: 25px;}

.app-error {}

.apps-grid {grid-template-columns: repeat(4, 1fr);width: 300px;margin: 0 auto;}

.left-panel p {
    text-align: center;
    font-size: 14px;
}

.section-title.main-heading {
    font-size: 26px;
    margin: 4px;
}

.section-title-normal-weight {
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
    padding-bottom: 13px;
}

.slider-section {
    width: 294px;
    margin: 20px auto;
}

h1.booscala-logo {
    font-size: 26px;
    margin: 4px;
}

.right-panel h2 {
    font-size: 21px;
    margin-top: 14px;
}
}

.app-0 {
  background: url(images/icon-0.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-1 {
  background: url(images/icon-1.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-2 {
  background: url(images/icon-2.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-3 {
  background: url(images/icon-3.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-4 {
  background: url(images/icon-4.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-5 {
  background: url(images/icon-5.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-6 {
  background: url(images/icon-6.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-7 {
  background: url(images/icon-7.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-8 {
  background: url(images/icon-8.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-9 {
  background: url(images/icon-9.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-10 {
  background: url(images/icon-10.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-11 {
  background: url(images/icon-11.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-12 {
  background: url(images/icon-12.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-13 {
  background: url(images/icon-13.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-14 {
  background: url(images/icon-14.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-15 {
  background: url(images/icon-15.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-16 {
  background: url(images/icon-16.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-17 {
  background: url(images/icon-17.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-18 {
  background: url(images/icon-18.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-19 {
  background: url(images/icon-19.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-20 {
  background: url(images/icon-20.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-21 {
  background: url(images/icon-21.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-22 {
  background: url(images/icon-22.png) no-repeat center center;
  background-size: 60px 63px;
}
.app-23 {
  background: url(images/icon-23.png) no-repeat center center;
  background-size: 60px 63px;
}
.main-heading {
  font-size: 30px;
  text-align: center;
}
.booscala-logo {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.slider-bubble {
  position: absolute;
  top: -29px;
  left: 0;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #3a8dde;
  color: #3a8dde;
  border-radius: 16px;
  padding: 2px 8px;
  font-size: 13px;
  font-weight: 400;
  box-shadow: 0 2px 8px rgba(162, 89, 255, 0.15);
  pointer-events: none;
  transition: left 0.1s;
  z-index: 2;
  background-clip: padding-box;
}

.app-error {
  background: #fff3cd;
  border: 1px solid #ffd6b3;
  border-radius: 10px;
  color: #222;
  font-size: 15px;
  padding: 8px 18px;
  box-shadow: 0 2px 8px rgba(255, 205, 97, 0.08);
  border-color: #ffbdbd;
  margin-bottom: 26px;
  display: inline-flex;
  font-weight: 300;
  align-items: center;
  justify-content: center;
}
.app-error-icon {
  color: #ffb84d;
  font-size: 22px;
  margin-right: 12px;
}

.app-icon-wrapper {
  position: relative;
  display: inline-block;
}

.app-popup {
  display: none;
  position: absolute;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
  min-width: 140px;
  background: #fff;
  border: 2px solid #3a8dde;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(162, 89, 255, 0.1);
  color: #3a8dde;
  font-size: 12px;
  font-weight: 300;
  padding: 8px 8px;
  z-index: 10;
  text-align: center;
  pointer-events: none;
  z-index: 100000;
}
.app-popup-title {
  font-weight: 400;
  font-size: 13px;
  margin-bottom: 0px;
  color: #3a8dde;
}
.app-popup-desc {
  font-weight: 400;
  font-size: 11px;
  color: #888;
}

.app-icon-wrapper.selected .checkmark {
  display: flex;
}
.checkmark {
  display: none;
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  z-index: 11;
  box-shadow: 0 2px 8px rgba(162, 89, 255, 0.15);
}
.checkmark i {
  color: #3a8dde;
  font-size: 19px;
  margin-top: -28px;
  margin-left: 34px;
  background: white;
  border-radius: 100%;
}

.arrow-right {
  color: white;
  background: #3a8ddd;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  margin-left: -15px;
}
.arrow-right-container {
  display: flex;
  padding-top: 50px;
}
.user-review-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.user-review-container img {
  width: 86px;
  border-radius: 100%;
  border: 1px solid #bebebe;
  padding: 6px;
}

.user-review-container p {
  margin: 0px;
}
.content-box {
  padding: 28px;
  border: 1px solid #e5e1e1;
  margin-bottom: 20px;
  border-radius: 10px;
}
@media (max-width: 1070px) {
  .main-content {
    display: block;
    margin: 0px;
    padding: 0px;
  }

  .left-panel {
    width: 100%;
    margin: 0px;
    border: 10px solid black;
  }

  .arrow-right-container {
    display: none;
  }

  .right-panel {
    width: 100%;
    margin: 0px;
    border: 10px solid black;
  }
.savings-amount-title,.savings-amount {
  font-size: 28px!important;
}
.header {
  margin-bottom: 20px;
}

.slider-section {
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.left-panel {
  padding-bottom: 0px;
}

.right-panel {
  padding: 0px;
}

.content-box {
  padding: 10px 20px;
  border: none;
}
.content-box-inner {
  display: flex;
  flex-direction: column-reverse;
}
.content-box-inner {
  display: flex;
  flex-direction: column-reverse;
}

.cta-button {
  margin-bottom: 10px;
}
.right-panel p {
  padding: 0px;
  margin-bottom: 10px;
}
}
