:root {
  --bg: #f0f7f8;
  --card: #ffffff;
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --cyan-soft: rgba(6, 182, 212, 0.08);
  --cyan-border: rgba(6, 182, 212, 0.2);
  --gold: #d4a853;
  --gold-soft: rgba(212, 168, 83, 0.1);
  --text: #1a2a30;
  --muted: #6b8a95;
  --border: #e2ecef;
  --shadow: 0 4px 24px rgba(6, 182, 212, 0.08);
  --shadow-hover: 0 16px 48px rgba(6, 182, 212, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ══ NAVBAR ══ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.nav-logo-text span {
  color: var(--cyan);
}
.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  border-bottom: 3px solid var(--cyan-dark);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}
.nav-back:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(6, 182, 212, 0.45);
}

/* ══ HERO ══ */
.hero {
  background: linear-gradient(135deg, #e8f4f7 0%, #f5f0e8 100%);
  padding: 72px 5% 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 800px 400px at 50% 0%,
    rgba(6, 182, 212, 0.08),
    transparent
  );
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--cyan-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--cyan-border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  pointer-events: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-border);
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.1s ease both;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero h1 em {
  color: var(--cyan);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  font-weight: 300;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.4s ease both;
}
.meta-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.meta-pill i {
  color: var(--cyan);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(6, 182, 212, 0.35);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.5s ease both;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(6, 182, 212, 0.5);
}

/* ══ STATS BAR ══ */
.stats-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  padding: 22px 40px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* ══ SECTION ══ */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 5%;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-border);
  color: var(--cyan-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 44px;
}

/* ══ HIGHLIGHT BANNER ══ */
.highlight-banner {
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.06),
    rgba(212, 168, 83, 0.06)
  );
  border: 1px solid var(--cyan-border);
  border-left: 4px solid var(--cyan);
  border-radius: 0 16px 16px 0;
  padding: 22px 28px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 44px;
}
.hb-icon {
  width: 42px;
  height: 42px;
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 18px;
  flex-shrink: 0;
}
.hb-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}
.hb-text strong {
  color: var(--cyan-dark);
}

/* ══ INFO CARDS GRID ══ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(6, 182, 212, 0.35);
}
.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.info-card:hover::before {
  opacity: 1;
}
.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.badge-new {
  background: rgba(6, 182, 212, 0.12);
  color: var(--cyan-dark);
  border: 1px solid var(--cyan-border);
}
.badge-important {
  background: rgba(212, 168, 83, 0.12);
  color: #a07828;
  border: 1px solid rgba(212, 168, 83, 0.25);
}
.card-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 22px;
  margin-bottom: 16px;
}
.card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ══ STEPS SECTION ══ */
.steps-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}
.steps-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  cursor: default;
  position: relative;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(6, 182, 212, 0.3);
}
.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-family: "Playfair Display", serif;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.35);
}
.step-emoji {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
}
.step-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}
.step-connector {
  display: none;
}

/* ══ IMPORTANT NOTE ══ */
.important-note {
  background: rgba(212, 168, 83, 0.06);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 48px;
}
.in-icon {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.in-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}
.in-text strong {
  color: #a07828;
}

/* ══ HELP CARD ══ */
.help-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
}
.help-icon-big {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: var(--cyan-soft);
  border: 2px solid var(--cyan-border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--cyan);
}
.help-body {
  flex: 1;
  min-width: 200px;
}
.help-body h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.help-body h3 em {
  color: var(--cyan);
  font-style: italic;
}
.help-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}
.help-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.btn-cyan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(6, 182, 212, 0.45);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid var(--cyan-border);
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover {
  background: var(--cyan-soft);
  border-color: var(--cyan);
}

/* ══ CTA BLOCK ══ */
.cta-block {
  background: linear-gradient(135deg, var(--cyan) 0%, #0369a1 100%);
  border-radius: 24px;
  padding: 48px 44px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.03) 20px,
    rgba(255, 255, 255, 0.03) 40px
  );
}
.cta-block h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cta-block h3 em {
  font-style: italic;
  opacity: 0.85;
}
.cta-block p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.btn-white-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-white-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ══ WHY SECTION ══ */
.why-section {
  background: linear-gradient(135deg, #1a2a30 0%, #0d1e24 100%);
  padding: 72px 5%;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 182, 212, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.why-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 18px;
  padding: 28px 22px;
  transition:
    transform 0.3s,
    background 0.3s;
}
.why-item:hover {
  transform: translateY(-4px);
  background: rgba(6, 182, 212, 0.07);
}
.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 20px;
  margin-bottom: 16px;
}
.why-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.why-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  font-weight: 300;
}

/* ══ FOOTER ══ */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 24px 5%;
  text-align: center;
}
.footer p {
  font-size: 12px;
  color: var(--muted);
}
.footer a {
  color: var(--cyan);
  text-decoration: none;
}

/* ══ WA FLOAT ══ */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  text-decoration: none;
}
.wa-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
  position: relative;
}
.wa-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.wa-float:hover .wa-circle {
  transform: scale(1.1);
}
.wa-tip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: #1a2a30;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.wa-float:hover .wa-tip {
  opacity: 1;
}

/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-bar {
    justify-content: flex-start;
    overflow-x: auto;
  }
  .help-card {
    padding: 24px 20px;
  }
  .cta-block {
    padding: 32px 20px;
  }
}
