/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: background 0.2s;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-secondary);
  color: var(--teal-darkest);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  position: relative;
}
.btn-yellow:hover {
  background: var(--color-secondary-dark);
  transform: translateY(-2px);
}

.tool-launch-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.tool-launch-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

/* ── NAV CTA BUTTON ── */
.nav-cta {
  background: var(--color-primary) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: var(--color-primary-dark) !important;
  transform: translateY(-1px);
}

/* ── SERVICE CARD ── */
.service-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-background);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(91, 196, 191, 0.18);
  transform: translateY(-3px);
  border-color: var(--color-lighten-40);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-background);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.service-card h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-darkest);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 13.5px;
  font-weight: 300;
  color: #777;
  line-height: 1.65;
}
.service-tag {
  margin-top: 1.1rem;
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-darkest);
  background: var(--color-lighten-60);
  padding: 4px 10px;
  border-radius: 50px;
}

/* ── UPCOMING TOOL CARD ── */
.tool-soon {
  border: 1.5px dashed var(--color-border);
  border-radius: 14px;
  padding: 1.5rem;
  position: relative;
  background: var(--color-secondary-background);
  transition: border-color 0.2s;
}
.tool-soon:hover {
  border-color: var(--color-background);
}
.tool-soon h4 {
  font-family: "Baloo 2", cursive;
  font-size: 0.95rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 0.35rem;
}
.tool-soon p {
  font-size: 12.5px;
  font-weight: 300;
  color: #aaa;
  line-height: 1.55;
}
.soon-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  background: #e8e8e8;
  padding: 3px 8px;
  border-radius: 50px;
}

/* ── PROCESS STEP ── */
.process-step {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.process-step:hover {
  background: rgba(255, 255, 255, 0.14);
}
.step-num {
  font-family: "Baloo 2", cursive;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.14);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-step h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ── LIVE BADGE ── */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-progress-bar);
  background: #e6f7f0;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-progress-bar);
  animation: livepulse 1.6s infinite;
}

/* ── CHIPS ── */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 2rem;
}
.chip {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.13);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* ── POG BROWSER MOCK ── */
.tool-preview {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.preview-bar {
  background: rgba(0, 0, 0, 0.15);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.preview-url {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.38);
  margin-left: 8px;
}
.preview-content {
  flex: 1;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
}
.preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.preview-item {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 7px 9px;
}
.pi-label {
  font-size: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.pi-val {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}
.preview-pog {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  align-content: start;
}
.pog-slot {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  aspect-ratio: 1 / 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.3s;
}
.pog-slot.p1 {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.95);
}
.pog-slot.p2 {
  background: var(--color-secondary);
  color: rgba(0, 0, 0, 0.65);
}
.pog-slot.p3 {
  background: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.7);
}
