/* HiTechCloud License Leasing page */
.ll26-page {
  --ll26-blue: #0969ff;
  --ll26-cyan: #00c2ff;
  --ll26-navy: #071832;
  --ll26-deep: #041020;
  --ll26-text: #22304a;
  --ll26-muted: #667895;
  --ll26-border: #d9e7f5;
  --ll26-bg: #f5f9ff;
  --ll26-white: #fff;
  --ll26-orange: #f47b20;
  --ll26-font: "BeauSansPro", "Sarabun", sans-serif;
  --ll26-content-font: "Sarabun", "BeauSansPro", sans-serif;
  color: var(--ll26-text);
  font-family: var(--ll26-font);
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
}

.ll26-page p,
.ll26-page li,
.ll26-page label,
.ll26-page input,
.ll26-page select,
.ll26-page textarea {
  font-family: var(--ll26-content-font);
}
.ll26-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.ll26-section {
  padding: clamp(64px, 7vw, 104px) 0;
}
.ll26-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--ll26-blue);
  font-size: 14px;
  font-weight: 800;
}
.ll26-eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}
.ll26-eyebrow--light {
  color: var(--ll26-cyan);
}
.ll26-section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}
.ll26-section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.ll26-section-heading--center .ll26-eyebrow {
  justify-content: center;
}
.ll26-section-heading h2,
.ll26-overview h2,
.ll26-license-model h2,
.ll26-compliance h2,
.ll26-consultation h2 {
  margin: 0;
  color: var(--ll26-navy);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
}
.ll26-section-heading p {
  max-width: 700px;
  margin: 14px auto 0;
  color: var(--ll26-muted);
  font-size: 17px;
  line-height: 1.7;
}
.ll26-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.ll26-btn:hover {
  transform: translateY(-2px);
}
.ll26-btn--primary {
  background: var(--ll26-white);
  box-shadow: 0 15px 34px rgba(4, 16, 32, 0.2);
  color: var(--ll26-navy);
}
.ll26-btn--outline {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--ll26-white);
}
.ll26-btn--light {
  background: var(--ll26-white);
  box-shadow: 0 15px 32px rgba(4, 16, 32, 0.2);
  color: var(--ll26-blue);
}

.ll26-hero {
  position: relative;
  aspect-ratio: 2048 / 768;
  min-height: clamp(300px, 37.5vw, 768px);
  padding: clamp(56px, 4.7vw, 96px) 0 0;
  background: var(--ll26-deep) var(--ll26-hero-image) center/cover no-repeat;
  color: var(--ll26-white);
}
.ll26-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 16, 32, 0.94) 0%,
    rgba(4, 16, 32, 0.72) 42%,
    rgba(4, 16, 32, 0.12) 100%
  );
  content: "";
}
.ll26-hero__inner {
  position: relative;
  display: block;
  min-height: calc(clamp(300px, 37.5vw, 768px) - clamp(56px, 4.7vw, 96px));
}
.ll26-hero__content {
  max-width: 570px;
  padding-bottom: 76px;
}
.ll26-hero h1 {
  max-width: 570px;
  margin: 0;
  color: var(--ll26-white);
  font-size: clamp(34px, 3.2vw, 38px);
  font-weight: 500;
  line-height: 1.2;
}
.ll26-hero p {
  max-width: 570px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.ll26-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.ll26-hero-tab-select {
  display: none;
}
.ll26-hero-tab-select__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border: 0;
  border-radius: 16px;
  background: var(--ll26-white);
  box-shadow: 0 14px 36px rgba(4, 16, 32, 0.2);
  color: var(--ll26-navy);
  cursor: pointer;
  font-family: var(--ll26-font);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
}
.ll26-hero-tab-select__toggle i {
  display: inline-flex;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid var(--ll26-blue);
  border-bottom: 2px solid var(--ll26-blue);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}
.ll26-hero-tab-select__toggle[aria-expanded="true"] i {
  transform: rotate(225deg) translateY(-2px);
}
.ll26-hero-tabs {
  position: absolute;
  right: auto;
  bottom: -1px;
  left: 50%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100vw;
  max-width: none;
  border-radius: 0;
  background: var(--ll26-white);
  box-shadow: 0 -8px 34px rgba(4, 16, 32, 0.16);
  transform: translateX(-50%);
  overflow-x: auto;
  scrollbar-width: thin;
}
.ll26-hero-tabs::-webkit-scrollbar {
  display: none;
}
.ll26-hero-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  min-height: 60px;
  padding: 14px 20px;
  border: 0;
  border-right: 1px solid var(--ll26-border);
  background: transparent;
  color: var(--ll26-navy);
  cursor: pointer;
  font-family: var(--ll26-font);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}
.ll26-hero-tabs button:last-child {
  border-right: 0;
}
.ll26-hero-tabs button:hover {
  color: var(--ll26-blue);
}
.ll26-hero-tabs button.is-active {
  background: var(--ll26-blue);
  color: var(--ll26-white);
}
.ll26-hero-tabs button.is-active:hover {
  color: var(--ll26-white);
}
.ll26-tab-panels {
  position: relative;
}
.ll26-tab-panels [hidden] {
  display: none !important;
}

.ll26-overview {
  background: var(--ll26-white);
}
.ll26-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.ll26-overview h2 {
  font-size: clamp(32px, 4vw, 48px);
}
.ll26-overview__content > p {
  margin: 18px 0 0;
  color: var(--ll26-muted);
  font-size: 17px;
  line-height: 1.75;
}
.ll26-check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.ll26-check-list li {
  position: relative;
  padding-left: 31px;
  color: var(--ll26-navy);
  font-weight: 700;
}
.ll26-check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #e3f6f1;
  color: #0a9a77;
  content: "✓";
  font-size: 13px;
  font-weight: 900;
  place-items: center;
}
.ll26-overview__visual {
  position: relative;
}
.ll26-overview__visual img {
  display: block;
  width: 100%;
  min-height: 260px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 24px 54px rgba(8, 47, 134, 0.16);
}
.ll26-overview__metric {
  position: absolute;
  right: 22px;
  bottom: -20px;
  max-width: 230px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--ll26-navy);
  box-shadow: 0 18px 34px rgba(4, 16, 32, 0.2);
  color: var(--ll26-white);
}
.ll26-overview__metric strong {
  display: block;
  font-size: 22px;
}
.ll26-overview__metric span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--ll26-content-font);
  font-size: 13px;
}

.ll26-products {
  background: var(--ll26-bg);
}
.ll26-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.ll26-product-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
  border: 1px solid var(--ll26-border);
  border-radius: 18px;
  background: var(--ll26-white);
  box-shadow: 0 12px 35px rgba(8, 47, 134, 0.06);
}
.ll26-product-card__logo {
  display: flex;
  align-items: center;
  height: 65px;
  margin-bottom: 22px;
}
.ll26-product-card__logo img {
  display: block;
  max-width: 190px;
  max-height: 58px;
  object-fit: contain;
}
.ll26-product-card h3 {
  margin: 0;
  color: var(--ll26-navy);
  font-size: 25px;
}
.ll26-product-card > p {
  min-height: 104px;
  margin: 12px 0 18px;
  color: var(--ll26-muted);
  line-height: 1.65;
}
.ll26-product-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.ll26-product-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ll26-text);
  font-size: 14px;
}
.ll26-product-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ll26-cyan);
  content: "";
}
.ll26-product-card a {
  margin-top: auto;
  color: var(--ll26-blue);
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}
.ll26-product-card a span {
  margin-left: 5px;
  transition: margin 0.2s ease;
}
.ll26-product-card a:hover span {
  margin-left: 10px;
}
.ll26-products__note {
  margin: 28px auto 0;
  color: var(--ll26-muted);
  font-size: 15px;
  text-align: center;
}

.ll26-advantages {
  background: var(--ll26-white);
}
.ll26-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.ll26-advantage-card {
  padding: 30px;
  border-top: 3px solid var(--ll26-blue);
  background: #f8fbff;
}
.ll26-advantage-card__icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 15px;
  background: #e8f1ff;
  place-items: center;
}
.ll26-advantage-card__icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.ll26-advantage-card h3 {
  margin: 0;
  color: var(--ll26-navy);
  font-size: 22px;
}
.ll26-advantage-card p {
  margin: 11px 0 0;
  color: var(--ll26-muted);
  line-height: 1.7;
}

.ll26-license-model {
  background: var(--ll26-bg);
}
.ll26-license-model__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
}
.ll26-license-model__visual {
  padding: 20px;
  border: 1px solid var(--ll26-border);
  background: var(--ll26-white);
}
.ll26-license-model__visual img {
  display: block;
  width: 100%;
  height: auto;
}
.ll26-model-steps {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}
.ll26-model-steps > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}
.ll26-model-steps span {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ll26-blue);
  color: var(--ll26-white);
  font-size: 13px;
  font-weight: 850;
  place-items: center;
}
.ll26-model-steps p {
  margin: 0;
  color: var(--ll26-muted);
  line-height: 1.6;
}
.ll26-model-steps strong {
  color: var(--ll26-navy);
}
.ll26-license-model__note {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--ll26-orange);
  background: #fff8f1;
  color: #6a4a30;
  font-family: var(--ll26-content-font);
  line-height: 1.65;
}

.ll26-benefits {
  background: var(--ll26-white);
}
.ll26-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.ll26-benefit-card {
  padding: 25px 22px;
  border: 1px solid var(--ll26-border);
  background: var(--ll26-white);
}
.ll26-benefit-card > span {
  color: var(--ll26-blue);
  font-size: 14px;
  font-weight: 900;
}
.ll26-benefit-card h3 {
  margin: 18px 0 10px;
  color: var(--ll26-navy);
  font-size: 20px;
  line-height: 1.25;
}
.ll26-benefit-card p {
  margin: 0;
  color: var(--ll26-muted);
  font-size: 15px;
  line-height: 1.65;
}
.ll26-compliance {
  background: linear-gradient(115deg, #061b38, #064a8e);
  color: var(--ll26-white);
}
.ll26-compliance__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}
.ll26-compliance h2 {
  max-width: 780px;
  color: var(--ll26-white);
}
.ll26-compliance p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}
.ll26-compliance .ll26-btn {
  flex: 0 0 auto;
}

.ll26-faq {
  background: var(--ll26-bg);
}
.ll26-faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}
.ll26-faq__list {
  display: grid;
  gap: 11px;
}
.ll26-faq__item {
  border: 1px solid var(--ll26-border);
  background: var(--ll26-white);
}
.ll26-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 21px;
  color: var(--ll26-navy);
  cursor: pointer;
  font-size: 16px;
  font-weight: 850;
  list-style: none;
}
.ll26-faq__item summary::-webkit-details-marker {
  display: none;
}
.ll26-faq__item summary span {
  color: var(--ll26-blue);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}
.ll26-faq__item[open] summary span {
  transform: rotate(45deg);
}
.ll26-faq__item p {
  margin: 0;
  padding: 0 21px 21px;
  color: var(--ll26-muted);
  line-height: 1.7;
}

.ll26-consultation {
  background: var(--ll26-deep);
}
.ll26-consultation__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: start;
}
.ll26-consultation h2 {
  color: var(--ll26-white);
}
.ll26-consultation__intro > p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.7;
}
.ll26-consultation__intro ul {
  display: grid;
  gap: 12px;
  margin: 25px 0;
  padding: 0;
  list-style: none;
}
.ll26-consultation__intro li {
  position: relative;
  padding-left: 27px;
  color: rgba(255, 255, 255, 0.9);
}
.ll26-consultation__intro li::before {
  position: absolute;
  left: 0;
  color: var(--ll26-cyan);
  content: "✓";
  font-weight: 900;
}
.ll26-consultation__intro > a {
  color: var(--ll26-cyan);
  font-weight: 800;
  text-decoration: none;
}
.ll26-form-card {
  padding: clamp(24px, 4vw, 42px);
  background: var(--ll26-white);
}
.ll26-form-card__heading {
  margin-bottom: 24px;
}
.ll26-form-card__heading span {
  color: var(--ll26-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ll26-form-card h3 {
  margin: 8px 0 0;
  color: var(--ll26-navy);
  font-size: 32px;
  line-height: 1.15;
}
.ll26-alert {
  margin-bottom: 18px;
  padding: 13px 15px;
  font-family: var(--ll26-content-font);
  font-size: 14px;
  line-height: 1.5;
}
.ll26-alert--success {
  border: 1px solid #a8e1ce;
  background: #ecfbf5;
  color: #087553;
}
.ll26-alert--error {
  border: 1px solid #f0c2c2;
  background: #fff4f4;
  color: #9b2b2b;
}
.ll26-form {
  display: grid;
  gap: 16px;
}
.ll26-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.ll26-form label {
  display: grid;
  gap: 7px;
  color: var(--ll26-navy);
  font-size: 14px;
  font-weight: 800;
}
.ll26-form label > span {
  color: #da4d4d;
}
.ll26-form input,
.ll26-form select,
.ll26-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #c9d9ec;
  border-radius: 7px;
  background: #fbfdff;
  color: var(--ll26-text);
  font-size: 15px;
  outline: none;
  padding: 12px 13px;
}
.ll26-form textarea {
  resize: vertical;
}
.ll26-form input:focus,
.ll26-form select:focus,
.ll26-form textarea:focus {
  border-color: var(--ll26-blue);
  box-shadow: 0 0 0 3px rgba(9, 105, 255, 0.12);
}
.ll26-form button {
  min-height: 50px;
  border: 0;
  border-radius: 7px;
  background: var(--ll26-blue);
  color: var(--ll26-white);
  cursor: pointer;
  font-family: var(--ll26-font);
  font-size: 15px;
  font-weight: 850;
}
.ll26-form button:hover {
  background: #0757d6;
}
.ll26-form__privacy {
  margin: 0;
  color: var(--ll26-muted);
  font-size: 12px;
  line-height: 1.5;
}
.ll26-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

@media (max-width: 900px) {
  .ll26-overview__grid,
  .ll26-license-model__grid,
  .ll26-faq__grid,
  .ll26-consultation__grid {
    grid-template-columns: 1fr;
  }
  .ll26-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ll26-advantage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ll26-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ll26-compliance__inner {
    display: grid;
  }
}

@media (max-width: 768px) {
  .ll26-container {
    width: min(100% - 32px, 1180px);
  }
  .ll26-section {
    padding: 58px 0;
  }
  .ll26-hero {
    aspect-ratio: auto;
    min-height: auto;
    padding-bottom: 24px;
  }
  .ll26-hero__inner {
    min-height: auto;
  }
  .ll26-hero__content {
    padding-bottom: 28px;
  }
  .ll26-hero::before {
    background: linear-gradient(
      90deg,
      rgba(4, 16, 32, 0.94),
      rgba(4, 16, 32, 0.7)
    );
  }
  .ll26-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }
  .ll26-hero p {
    font-size: 16px;
  }
  .ll26-hero-tab-select {
    display: block;
    margin-top: 24px;
    padding: 0;
  }
  .ll26-hero-tabs {
    display: none;
  }
  .ll26-hero-tabs.is-open {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-height: 340px;
    margin: 10px 0 0;
    padding: 8px;
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(4, 16, 32, 0.24);
    transform: none;
    overflow: auto;
    z-index: 5;
  }
  .ll26-hero-tabs.is-open button {
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 12px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--ll26-border);
    border-radius: 12px;
    font-size: 14px;
    text-align: left;
  }
  .ll26-hero-tabs.is-open button:last-child {
    border-bottom: 0;
  }
  .ll26-hero-tabs.is-open button.is-active {
    background: var(--ll26-blue);
    color: var(--ll26-white);
    border: 0;
  }
  .ll26-product-grid,
  .ll26-advantage-grid,
  .ll26-benefit-grid,
  .ll26-form__row {
    grid-template-columns: 1fr;
  }
  .ll26-product-card {
    min-height: 0;
  }
  .ll26-product-card > p {
    min-height: 0;
  }
  .ll26-overview__metric {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -25px 14px 0;
  }
  .ll26-compliance__inner {
    gap: 26px;
  }
  .ll26-form-card {
    padding: 22px 18px;
  }
}
