/* Demo talep paneli */
.side-info .demo-panel-logo {
  width: 220px;
  max-width: 70%;
}

.side-info .demo-panel-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.side-info .offset-widget-box.demo-panel {
  margin-top: 18px;
}

.demo-panel__intro {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.demo-panel__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary, #f26c2c);
  margin-bottom: 8px;
}

.demo-panel .title {
  font-size: 22px !important;
  line-height: 1.3 !important;
  margin-bottom: 8px !important;
  color: #111;
}

.demo-panel__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #666;
}

.demo-panel__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.demo-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #222;
}

.demo-field label span {
  color: var(--secondary, #f26c2c);
}

.demo-field input,
.demo-field select,
.demo-field textarea {
  width: 100%;
  border: 1px solid #e4e4e4;
  background: #f7f7f8;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: #111;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.demo-field textarea {
  resize: vertical;
  min-height: 88px;
}

.demo-field input:focus,
.demo-field select:focus,
.demo-field textarea:focus {
  background: #fff;
  border-color: var(--secondary, #f26c2c);
  box-shadow: 0 0 0 3px rgba(242, 108, 44, 0.12);
}

.demo-panel__submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--secondary, #f26c2c);
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.demo-panel__submit:hover {
  opacity: 0.92;
  box-shadow: 0 10px 24px rgba(242, 108, 44, 0.25);
}

.demo-panel__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  box-shadow: none;
}

.demo-panel__message {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}

.demo-panel__message.text-success {
  background: #eaf8ef;
  color: #1f7a3f;
}

.demo-panel__message.text-danger {
  background: #fdeeee;
  color: #b42318;
}

.demo-panel__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.demo-panel__footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
}

.demo-panel__footer a:hover {
  color: var(--secondary, #f26c2c);
}

/* Demo CTA bölümü */
.demo-cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 48px;
  align-items: center;
}

.demo-cta__content .title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary, #111);
  margin-bottom: 18px;
}

.demo-cta__content .desc {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 28px;
}

.demo-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.demo-cta__btn-dark {
  background: #1a1a1a !important;
  border: none;
}

.demo-cta__media {
  max-width: 420px;
  margin-left: auto;
}

.demo-cta__media img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Referans logoları */
.brand-slide-8__item img {
  max-width: 75%;
  max-height: 75%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@media only screen and (max-width: 1199px) {
  .demo-cta__inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
  }

  .demo-cta__content .title {
    font-size: 34px;
  }

  .demo-cta__media {
    max-width: 360px;
  }
}

@media only screen and (max-width: 991px) {
  .demo-cta__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .demo-cta__content {
    text-align: center;
  }

  .demo-cta__content .desc {
    margin-left: auto;
    margin-right: auto;
  }

  .demo-cta__actions {
    justify-content: center;
  }

  .demo-cta__media {
    max-width: 380px;
    margin: 0 auto;
  }

  .demo-cta__media img {
    max-height: 360px;
  }
}

@media (max-width: 575px) {
  .side-info .demo-panel-logo {
    width: 180px;
  }

  .demo-field-row {
    grid-template-columns: 1fr;
  }

  .demo-panel .title {
    font-size: 20px !important;
  }

  .demo-cta__content .title {
    font-size: 28px;
  }
}
