:root {
  --bg: #eaf4fd;
  --card: #ffffff;
  --border: #d7e6f5;
  --text: #14213a;
  --text-muted: #5c6b7c;
  --blue: #1c5fae;
  --blue-dark: #123f78;
  --blue-light: #6fb8ef;
  --radius: 16px;
  --font-heading: "Archivo", "Inter", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(28, 95, 174, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

.page {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}

/* Hero (compact) */
.hero-compact {
  text-align: center;
  margin-bottom: 26px;
}

.hero-logo-badge {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(18, 63, 120, 0.3);
}

.hero-logo-badge img { width: 58%; height: auto; }

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 23px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tag-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue-dark);
  box-shadow: 0 3px 10px rgba(28, 95, 174, 0.08);
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 13.5px;
}

/* Link buttons */
.link-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 46px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 18px;
  box-shadow: 0 6px 18px rgba(28, 95, 174, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(28, 95, 174, 0.16);
}

.link-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.link-icon svg { width: 19px; height: 19px; }

.link-btn:hover .link-icon {
  background: var(--blue);
  color: #fff;
}

.link-label {
  flex: 1;
  font-weight: 700;
  font-size: 15px;
}

.link-arrow {
  color: var(--text-muted);
  font-size: 18px;
}

/* Content blocks */
.block { margin-bottom: 50px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.block h2 { font-size: 24px; margin-bottom: 10px; }

.section-subnote {
  color: var(--text-muted);
  font-size: 13.5px;
  font-style: italic;
  margin-bottom: 20px;
}

.service-list {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 6px 18px rgba(28, 95, 174, 0.08);
  margin-bottom: 20px;
}

.service-intro {
  font-weight: 600;
  margin-bottom: 14px;
}

.service-list ul { display: flex; flex-direction: column; gap: 10px; }
.service-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.check {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--blue);
}
.check svg { width: 100%; height: 100%; }

.btn-cta {
  display: block;
  text-align: center;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(28, 95, 174, 0.28);
}
.btn-cta:hover { background: var(--blue-dark); }

/* Color swatch carousel */
.color-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 6px 6px 16px;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) var(--bg);
}

.color-scroll.dragging { cursor: grabbing; scroll-snap-type: none; }

.color-scroll::-webkit-scrollbar { height: 8px; }
.color-scroll::-webkit-scrollbar-track { background: var(--bg); border-radius: 999px; }
.color-scroll::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 999px; }

.color-item {
  flex: 0 0 auto;
  width: 80px;
  text-align: center;
  scroll-snap-align: start;
  user-select: none;
}

.color-swatch {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 16px rgba(28, 95, 174, 0.1);
  pointer-events: none;
}

.color-name {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

/* Footer */
.footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* Floating WA button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 90;
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }

@media (max-width: 380px) {
  .page { padding: 32px 14px 50px; }
}
