*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── HERO ─────────────────────────────────────────── */

.lk-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 64px;
  background: linear-gradient(135deg, #b10c41 0%, #7a0830 100%);
}

.lk-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 10%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.lk-hero__shapes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lk-hs {
  fill: rgba(255, 255, 255, 0.05);
}

.lk-hero__wrap {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.lk-hero__wrap--compact {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.lk-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.lk-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 9px;
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.5);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, background 0.18s, border-color 0.18s;
}

.lk-hero__cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-1px);
}


/* ─── ALUR ─────────────────────────────────────────── */

.lk-alur {
  padding: 80px 24px;
  background: #f9f4f6;
}

.lk-alur__wrap {
  max-width: 720px;
  margin: 0 auto;
}

.lk-alur__header {
  text-align: center;
  margin-bottom: 52px;
}

.lk-alur__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b10c41;
  margin-bottom: 10px;
}

.lk-alur__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
}

.lk-alur__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.lk-alur__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid #ecdce3;
}

.lk-alur__item:last-child {
  border-bottom: none;
}

.lk-alur__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #b10c41;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lk-alur__body {
  padding-top: 4px;
}

.lk-alur__step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.lk-alur__step-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.75;
}


/* ─── SYARAT & KETENTUAN ────────────────────────────── */

.lk-snk {
  padding: 80px 24px;
  background: #ffffff;
}

.lk-snk__wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.lk-snk__header {
  text-align: center;
  margin-bottom: 52px;
}

.lk-snk__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b10c41;
  margin-bottom: 10px;
}

.lk-snk__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 12px;
}

.lk-snk__sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

.lk-snk__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.lk-snk__block {
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  padding: 32px 28px;
  background: #fafafa;
}

.lk-snk__block-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lk-snk__block-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(177,12,65,0.08);
  color: #b10c41;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lk-snk__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.lk-snk__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.lk-snk__item:last-child {
  border-bottom: none;
}

.lk-snk__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #b10c41;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  min-width: 22px;
  padding-top: 1px;
}

.lk-snk__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #444;
  line-height: 1.65;
}

.lk-snk__agree {
  background: #f9f4f6;
  border: 1px solid #ecdce3;
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.lk-snk__checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}

.lk-snk__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.lk-snk__checkmark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #ccc;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, border-color 0.18s;
  color: transparent;
  margin-top: 1px;
}

.lk-snk__checkbox:checked + .lk-snk__checkmark {
  background: #b10c41;
  border-color: #b10c41;
  color: #ffffff;
}

.lk-snk__checkbox:focus-visible + .lk-snk__checkmark {
  outline: 2px solid #b10c41;
  outline-offset: 2px;
}

.lk-snk__agree-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  line-height: 1.65;
}

.lk-snk__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 9px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s, opacity 0.18s, transform 0.15s;
  background: #b10c41;
  color: #ffffff;
  cursor: pointer;
}

.lk-snk__btn:hover:not(.lk-snk__btn--disabled) {
  background: #8f0a34;
  transform: translateY(-1px);
}

.lk-snk__btn--disabled {
  background: #ccc;
  color: #999;
  cursor: not-allowed;
  pointer-events: none;
}


/* ─── FAQ ───────────────────────────────────────────── */

.lk-faq {
  padding: 80px 24px;
  background: #f9f4f6;
}

.lk-faq__wrap {
  max-width: 720px;
  margin: 0 auto;
}

.lk-faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.lk-faq__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b10c41;
  margin-bottom: 10px;
}

.lk-faq__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
}

.lk-faq__list {
  display: flex;
  flex-direction: column;
}

.lk-faq__item {
  border-bottom: 1px solid #ecdce3;
}

.lk-faq__item:first-child {
  border-top: 1px solid #ecdce3;
}

.lk-faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.lk-faq__q-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

.lk-faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(177,12,65,0.08);
  color: #b10c41;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, transform 0.22s;
}

.lk-faq__q[aria-expanded="true"] .lk-faq__icon {
  background: #b10c41;
  color: #ffffff;
  transform: rotate(45deg);
}

.lk-faq__answer {
  display: none;
  padding: 0 0 20px;
}

.lk-faq__answer.is-open {
  display: block;
}

.lk-faq__a-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
}


/* ─── CONTACT ───────────────────────────────────────── */

.contact-section {
  position: relative;
  width: calc(100% - var(--page-pad) * 2);
  margin: 0 var(--page-pad);
  border-radius: 20px;
  padding: 56px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #6f0a2a 0%, #9c0e38 35%, #b10c41 60%, #c21050 100%);
}

.contact-section__shapes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.cs { fill: none; stroke: rgba(255,255,255,0.07); stroke-width: 1.5; }
.cs--1 { fill: rgba(255,255,255,0.04); stroke: rgba(255,255,255,0.09); }
.cs--2 { fill: rgba(255,255,255,0.03); stroke: rgba(255,255,255,0.07); }
.cs--3 { fill: rgba(255,255,255,0.05); stroke: rgba(255,255,255,0.10); }

.contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact-heading {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  opacity: 0;
  animation: ct-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}

.contact-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), background 0.2s ease, border-color 0.2s ease;
}

.contact-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}

.contact-link:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.3); }
.contact-link:hover svg { transform: translateY(-3px) scale(1.1); }
.contact-link:active svg { transform: scale(0.95); }

.contact-link:nth-child(1) { animation: ct-pop 0.5s cubic-bezier(0.22,1,0.36,1) 0.35s both; }
.contact-link:nth-child(2) { animation: ct-pop 0.5s cubic-bezier(0.22,1,0.36,1) 0.46s both; }
.contact-link:nth-child(3) { animation: ct-pop 0.5s cubic-bezier(0.22,1,0.36,1) 0.57s both; }
.contact-link:nth-child(4) { animation: ct-pop 0.5s cubic-bezier(0.22,1,0.36,1) 0.68s both; }

@keyframes ct-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ct-pop {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}


/* ─── RESPONSIVE ────────────────────────────────────── */

@media (max-width: 768px) {
  .lk-hero {
    padding: 72px 20px 52px;
  }

  .lk-alur,
  .lk-snk,
  .lk-faq {
    padding: 60px 20px;
  }

  .lk-snk__grid {
    grid-template-columns: 1fr;
  }

  .lk-snk__agree {
    padding: 24px 20px;
  }

  .lk-snk__btn {
    width: 100%;
    justify-content: center;
  }

  .lk-hero__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .lk-snk__block {
    padding: 24px 18px;
  }
}