.siteLayout .takeoffHomeWrapper {
  background-color: #fff;
}
.takeoffHome {
  max-width: 1280px;
  width: 90%;
  padding: 75px 0;
  gap: 32px;
}
.takeoffHome {
  flex-direction: column;
  padding: 40px 0;
  text-align: center;
}
.takeoffHome .heroTitle {
  font-size: 60px;
  font-weight: bold;
  color: var(--text-color-dark);
  margin: 0;
}
.lg-l .takeoffHome .heroTitle {
  font-size: 46px;
}
.sm-l .takeoffHome .heroTitle {
  font-size: 42px;
}
.xs-l .takeoffHome .heroTitle {
  font-size: 32px;
}
.takeoffHome .heroSubHeading {
  padding-bottom: 42px;
  margin-top: 12px;
}
.takeoffHome .takeoffMonitorWrapper {
  margin-top: 20px;
  width: 700px;
  height: auto;
  max-width: 100%;
  position: relative;
}
.takeoffHomeWrapper .takeoffDevices {
  width: 700px;
  height: auto;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.takeoffHomeWrapper .takeoffDevices .devices-container {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.takeoffHomeWrapper .takeoffDevices .takeoffPhone {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 18%;
  height: auto;
  object-fit: contain;
  z-index: 2;
}
.lg-l .takeoffHome .takeoffDevices {
  max-width: 90%;
}
.takeoffHome .takeoffMonitor {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain; 
}
.takeoffHome .takeoffMonitorVideo {
  position: absolute;
  top: 41.2%;
  left: 50%;
  transform: translate(-50%, -50%); 
  width: 92.5%;
  height: auto;
  object-fit: contain;
  background-color: transparent !important;
}
.takeoffHome .takeoffPhoneVideo {
  position: absolute;
  top: 78.3%;
  left: 86%;
  transform: translate(-50%, -50%);
  width: 17.1%;
  height: auto;
  object-fit: contain;
  background-color: transparent !important;
  z-index: 3;
}
.siteLayout .featuresWrapper {
  margin-top: 32px;
  padding: 0 32px;
  width: 90%;
  max-width: 1280px;
  gap: 32px;
}
.lg-l .featuresWrapper {
  flex-direction: column;
  padding: 0 20px;
  gap: 20px;
}
.siteLayout .feature {
  flex: 1;
  background: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.lg-l .siteLayout .feature {
  padding: 24px;
}
.siteLayout .getStarted {
  max-width: 1280px;
  width: 90%;
  padding: 48px 0;
  text-align: center;
}
.lg-l .siteLayout .getStarted {
  padding: 32px 0;
}
.heroButtons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.heroButtons .requestADemo,
.heroButtons .tryItFree {
  width: 255px;
}
.getStartedButtons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}
.getStartedButtons .requestADemo,
.getStartedButtons .tryItFree {
  width: 295px;
}
.sm-l .heroButtons,
.sm-l .getStartedButtons {
  flex-direction: column;
}
.sm-l .heroButtons .btn + .btn {
  margin-left: 0 !important;
  margin-top: 12px;
}
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  max-height: calc(100dvh - 40px);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}
.modal::-webkit-scrollbar {
  display: none;
}
.modal-header {
  background: #f0f0f0;
  padding: 16px 32px;
  text-align: center;
  position: relative;
  flex-shrink: 0;
}
.modal-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.modal-header p {
  opacity: 0.9;
  font-size: 16px;
}
.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(195, 195, 195, 0.2);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.close-button:hover {
  background: rgba(214, 214, 214, 0.3);
}
.modal-body {
  padding: 32px;
  overflow-y: auto;
  flex: 1;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2494E3;
  box-shadow: 0 0 0 3px rgba(36, 148, 227, 0.1);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #f36424 0%, #e85317 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}
.success-message {
  display: none;
  text-align: center;
  padding: 32px;
  color: #44ba52;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media (max-width: 768px) {
  .modal-overlay.active {
    align-items: flex-start;
    padding-top: 20px;
  }
  .modal {
    width: 95%;
  }
  .modal-header {
    padding: 20px;
  }
  .modal-header h2 {
    font-size: 22px;
  }
  .modal-body {
    padding: 20px;
  }
}
body.modal-open {
  overflow: hidden;
}