/* Utility Classes */
.m-0 {
  margin: 0;
}

.mb-12 {
  margin-bottom: 12px;
}

.gap-2 {
  gap: 2px;
}

.text-center {
  text-align: center;
}

/* Layout/Grid Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  align-items: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.grid-2.left-align div {
  text-align: left;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* Component Styles */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background: #10093d;
  color: #eff7ff;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 500;
  margin: 8px 0;
  width: fit-content;
}

.demo-card {
  background: #eff7ff;
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
}

/* Cards */
.card {
  background: white;
  border: 1px solid #d4dae3;
  border-radius: 8px;
  padding: 20px;
}

.card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}

.card p {
  margin-bottom: 0;
}

.card ul.minus,
.card ul.check {
  padding-left: 8px !important;
}

.card-icon {
  min-width: 42px;
  width: 42px;
  height: 42px;
  background: #eff7ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Section Styles */
.section {
  margin: 150px 0;
}

.section-header {
  display: flex;
  text-align: center;
  margin-bottom: 45px;
  flex-direction: column;
  align-items: center;
}

.section-header h2 {
  font-weight: bold;
  margin-bottom: 0;
  color: #10093d;
}

.section-header p {
  max-width: 600px;
  margin: 12px auto 0 auto;
}

/* Feature List */
.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  font-size: 14px;
}

/* Background Variations */
.bg-light {
  background: #eff7ff;
  border-radius: 12px;
  padding: 40px 0;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  background-color: #eff7ff;
  border-radius: 12px;
  padding: 32px;
}

.process-step {
  text-align: center;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #2a70e9;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 12px;
}

.step-number.completed {
  background: #3ccb3a;
}

.process-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 12px;
}

/* Testimonial */
.testimonial {
  background: #eff7ff;
  border-radius: 12px;
  padding: 28px;
  max-width: fit-content;
  margin: 0 auto;
}

.testimonial-content {
  display: flex;
  gap: 16px;
}

.testimonial-icon {
  width: 38px;
  height: 38px;
  background: #10093d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.testimonial blockquote {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  margin: 0;
}

.testimonial cite {
  font-style: normal;
  font-size: 12px;
}

/* Security Grid */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin: 0 80px 48px 80px;
}

.security-grid h3 {
  font-size: 14px;
  margin-bottom: 2px;
}

.security-item {
  text-align: center;
}

.security-icon {
  width: 48px;
  height: 48px;
  background: #eff7ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* Custom Elements */
.custom-element {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 24px;
  border: 1px solid #d4dae3;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Section-specific Styles */
#example h3 {
  margin-bottom: 40px;
}

#example .process-step h3 {
  margin: 0 0 4px 0;
}

#features .card {
  height: 240px;
  gap: 0;
}

#security.section {
  padding: 20px 0;
  margin-bottom: 50px;
}

#usage .card {
  height: max-content;
  flex-direction: row;
  text-align: left;
  gap: 12px;
  align-items: center;
}

#usage .card p {
  font-weight: 600;
  font-size: 13px;
  margin: 0;
}

#customization .container {
  padding: 32px;
  border-radius: 8px;
  padding-bottom: 100px;
}

#customization h3 {
  font-size: 14px;
}

#customization .text {
  width: fit-content;
}

#customization .check-bubble {
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: #2a70e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

#customization .check-bubble span {
  display: flex;
  align-items: center;
  justify-content: center;
}

#customization .check-bubble span img {
  width: 8px;
}

#customization .grid-3{
  max-width: 1000px;
  margin: 0 auto;
}

#customization .cust-text{
  max-width: 940px;
  margin: 20px auto 0 auto;
}

#customization .cust-text .check{
    padding-left: 16px;
}

#hr-digitalisation .auto-workflow {
  margin-top: 40px;
}

#hr-digitalisation .auto-workflow .card {
  height: auto;
}

#hr-digitalisation .card {
  height: 260px;
}

#hr-digitalisation .grid-1 .card:first-of-type {
  height: fit-content;
  margin-bottom: 40px;
}

#more-hr .card {
  height: 280px;
}

ul.check li {
  font-size: 13px;
}

/* Footer */
.mini-footer-container {
  width: 100%;
  background: #eff7ff;
  padding: 10px 0;
}

.mini-footer {
  max-width: 1000px;
  margin: 0 auto;
}

.mini-footer span {
  display: flex;
  flex-flow: row;
  gap: 2px;
  align-items: center;
  font-size: 12px;
}

/* Buttons */
.cta.hr-webinar {
  background-color: transparent;
  border: 2px solid #10093d;
  color: #10093d;
  min-height: 28.5px;
}

.cta.hr-webinar:hover {
  background-color: #f0f2f5;
  border: 2px solid #10093d;
}

/*Image Slider*/

.image-slider-container {
  top: -70px;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 20px auto;
  overflow: hidden;
  border-radius:8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.image-slider {
  position: relative;
  width: 100%;
  height: 535px;
}

.image-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  
}

.image-slider .after-image {
  clip-path: inset(0 50% 0 0);
}

.slider-handle {
  position: absolute;
  width: 4px;
  height: 100%;
  background: #10093d;
  left: 50%;
  top: 0;
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.slider-handle:after {
    background: #10093d;
  content: url(https://portiq.seccommerce.de/wp-content/uploads/2025/07/icon-arrow-2sides.svg);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 40px;
  height: 40px;
  transform: translateX(-46%);
  border-radius: 50%;
  top: 50%;
}

.slider-label {
  position: absolute;
  bottom: 20px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 3px;
  z-index: 4;
  font-size: 13px;
}

.slider-label.before-label {
  left: 20px;
}

.slider-label.after-label {
  right: 20px;
}
