:root {
  --gluk-canvas: #FAFAFA;
  --gluk-panel: #FFFFFF;
  --gluk-vibe: #E63946;
  --gluk-vibe-hover: #D62828;
  --gluk-ink-main: #1D3557;
  --gluk-ink-mute: #457B9D;
  --gluk-deep: #111A24;
  --gluk-flow: linear-gradient(135deg, #E63946, #F4A261);
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--font-body);
  background-color: var(--gluk-canvas);
  color: var(--gluk-ink-mute);
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--gluk-ink-main);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.bound-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.top-nav-bar {
  background: var(--gluk-vibe);
  color: #fff;
  position: relative;
  z-index: 100;
  padding: 1rem 0;
}
.nav-inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
}
.brand-mark svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.nav-toggler-input { display: none; }
.nav-toggler-label { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger-line { width: 25px; height: 3px; background: #fff; transition: 0.3s; }
.nav-links-wrap {
  display: flex;
  gap: 2rem;
}
.nav-item-link {
  font-weight: 600;
  transition: opacity 0.3s;
}
.nav-item-link:hover { opacity: 0.8; }

.action-trigger {
  display: inline-block;
  background: var(--gluk-deep);
  color: #fff;
  padding: 1rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
}
.action-trigger:hover { background: var(--gluk-ink-main); color: #fff; }

.action-trigger-pill {
  border-radius: 999px;
}
.action-trigger-ghost {
  background: transparent;
  border: 2px solid var(--gluk-vibe);
  color: var(--gluk-vibe);
}
.action-trigger-ghost:hover {
  background: var(--gluk-vibe);
  color: #fff;
}

.intro-visual-area {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 10dvh 0;
}
.deco-digit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  font-family: var(--font-display);
  color: #fff;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
}
.intro-split-grid {
  display: flex;
  position: relative;
  z-index: 2;
  width: 100%;
}
.intro-typography {
  flex: 1;
  color: #fff;
  padding-right: 2rem;
}
.intro-typography h1 {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.intro-typography p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 500px;
}
.abstract-figures {
  flex: 1;
  position: relative;
}
.abstract-figures::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 20%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.abstract-figures::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 20%;
  width: 200px;
  height: 200px;
  background: rgba(0,0,0,0.1);
  transform: rotate(45deg);
}

.insight-slant-wrap {
  position: relative;
  padding: 16dvh 0;
  background-image: url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.insight-text-pane {
  background: rgba(255,255,255,0.9);
  padding: 4rem;
  max-width: 800px;
  text-align: center;
  border-radius: 4px;
}
.insight-text-pane h2 { font-size: 2.5rem; margin-bottom: 1rem; }

.benefits-matrix {
  padding: 10dvh 0;
  background: var(--gluk-canvas);
}
.matrix-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.matrix-item {
  display: flex;
  flex-direction: column;
}
.matrix-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gluk-vibe);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}
.matrix-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.mechanics-pathway {
  padding: 10dvh 0;
  background: var(--gluk-panel);
}
.pathway-track {
  display: flex;
  align-items: flex-start;
  position: relative;
  justify-content: space-between;
}
.pathway-track::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gluk-vibe);
  z-index: 1;
}
.path-step {
  position: relative;
  z-index: 2;
  width: 30%;
  text-align: center;
}
.path-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gluk-vibe);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-family: var(--font-display);
  margin: 0 auto 1.5rem;
  border: 4px solid var(--gluk-panel);
}
.path-step:nth-child(even) .path-circle {
  background: var(--gluk-panel);
  color: var(--gluk-vibe);
  border-color: var(--gluk-vibe);
}

.conversion-strip-dark {
  background: var(--gluk-deep);
  padding: 6dvh 0;
}
.strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.strip-inner h2 {
  color: #fff;
  margin: 0;
  font-size: 2.5rem;
  max-width: 60%;
}

.pakar-intro {
  padding: 10dvh 0 5dvh;
  background: var(--gluk-vibe);
  color: #fff;
  text-align: center;
}
.pakar-intro h1 { color: #fff; font-size: 3rem; }
.pakar-immediate-action {
  text-align: center;
  padding: 0 0 5dvh 0;
  background: var(--gluk-vibe);
}
.pakar-bio-split {
  display: flex;
  flex-wrap: wrap;
  background: var(--gluk-panel);
}
.pakar-bio-text {
  flex: 1 1 55%;
  padding: 5dvh 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pakar-bio-img {
  flex: 1 1 45%;
  min-height: 400px;
  background-image: url('img/bg2.webp');
  background-size: cover;
  background-position: center;
}
.metrics-row {
  display: flex;
  justify-content: stretch;
  background: var(--gluk-deep);
  color: #fff;
}
.metric-box {
  flex: 1;
  text-align: center;
  padding: 4rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.metric-box:last-child { border-right: none; }
.metric-box strong {
  display: block;
  font-size: 3rem;
  color: var(--gluk-vibe);
  font-family: var(--font-display);
  line-height: 1;
}
.pakar-closing-vision {
  position: relative;
  padding: 15dvh 5%;
  background-image: url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.pakar-closing-vision::before {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.6);
}
.pakar-closing-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.pakar-closing-content h2 { color: #fff; }

.booking-dual-layout {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 5dvh auto;
  background: var(--gluk-panel);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.booking-form-area {
  flex: 1 1 60%;
  padding: 4rem;
}
.booking-info-cards {
  flex: 1 1 40%;
  background: var(--gluk-canvas);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.form-unit {
  margin-bottom: 1.5rem;
}
.form-unit label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gluk-ink-main);
}
.form-unit input, .form-unit textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  font-family: var(--font-body);
  border-radius: 2px;
}
.form-unit input:focus, .form-unit textarea:focus {
  outline: 2px solid var(--gluk-vibe);
  border-color: transparent;
}
.check-unit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.9rem;
}
.check-unit input { width: auto; margin-top: 5px; }

.info-card-item {
  background: #fff;
  padding: 1.5rem;
  border-left: 4px solid var(--gluk-vibe);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.info-card-item h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.info-card-item ul { list-style: none; padding-left: 0; margin-top: 1rem; }
.info-card-item li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; font-size: 0.9rem; }
.info-card-item li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gluk-vibe);
}

.faq-accordion-zone {
  max-width: 1200px;
  margin: 5dvh auto 10dvh;
  padding: 0 5%;
}
.faq-wrap { margin-top: 2rem; }
.faq-piece {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  background: var(--gluk-panel);
}
.faq-piece details { padding: 1.5rem; }
.faq-piece summary {
  font-family: var(--font-display);
  font-weight: bold;
  cursor: pointer;
  color: var(--gluk-ink-main);
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.faq-piece summary::-webkit-details-marker { display: none; }
.faq-piece p { margin-top: 1rem; }

.legal-doc-area {
  padding: 10dvh 0;
  background: var(--gluk-canvas);
  min-height: 80vh;
}
.legal-doc-area h2 { margin-top: 2rem; }

.bottom-zone {
  background: var(--gluk-deep);
  color: #aaa;
  padding: 4rem 0 2rem;
  text-align: center;
}
.bottom-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.bottom-links a:hover { color: #fff; }
.disclaimer-text {
  font-size: 0.85rem;
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.4;
}

.snack-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--gluk-ink-main);
  color: #fff;
  padding: 1rem;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}
.snack-notice p { margin: 0; }
.snack-actions { display: flex; gap: 1rem; }
.snack-btn {
  background: #fff;
  color: var(--gluk-ink-main);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: bold;
}
.snack-btn.reject { background: transparent; color: #fff; border: 1px solid #fff; }

@media (max-width: 992px) {
  .matrix-layout { grid-template-columns: repeat(2, 1fr); }
  .booking-dual-layout { flex-direction: column; }
  .pakar-bio-text, .pakar-bio-img { flex: 1 1 100%; }
}
@media (max-width: 768px) {
  .nav-toggler-label { display: flex; }
  .nav-links-wrap {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--gluk-vibe);
    padding: 1rem 5%;
    gap: 1rem;
  }
  .nav-toggler-input:checked ~ .nav-links-wrap { display: flex; }
  
  .intro-split-grid { flex-direction: column; text-align: center; }
  .intro-typography { padding-right: 0; margin-bottom: 2rem; }
  .intro-typography h1 { font-size: 2.5rem; }
  .abstract-figures { display: none; }
  
  .insight-slant-wrap { clip-path: none; padding: 10dvh 5%; }
  .insight-text-pane { padding: 2rem; }
  
  .pathway-track { flex-direction: column; gap: 2rem; align-items: center; }
  .pathway-track::before { display: none; }
  .path-step { width: 100%; }
  
  .strip-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .strip-inner h2 { max-width: 100%; font-size: 2rem; }
  
  .metrics-row { flex-direction: column; }
  .metric-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  
  .snack-notice { flex-direction: column; text-align: center; gap: 1rem; }
  .bottom-links { flex-direction: column; gap: 1rem; }
}