/* ============================================================
   Indoscale™ — Indonesia Market Entry, powered by Firefish
   Inter Tight (display) / Inter (body)
   ============================================================ */

@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-tight-latin-wght-normal.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-wght-normal.woff2') format('woff2-variations');
}

:root {
  --ink: #221c16;
  --ink-soft: #4c453e;
  --muted: #7a736b;
  --pink: #e5447c;
  --pink-dark: #c73066;
  --pink-soft: #fdeef4;
  --coral: #ff7a3c;
  --bg: #ffffff;
  --bg-alt: #faf7f4;
  --line: #ece7e1;
  --dark: #16121a;
  --dark-2: #221b2b;
  --white: #ffffff;
  --green: #1fae54;
  --grad: linear-gradient(120deg, #ff7a3c 0%, #f5426c 45%, #e5447c 100%);
  --radius: 18px;
  --shadow: 0 10px 40px rgba(34, 28, 22, 0.08);
  --shadow-lg: 0 24px 70px rgba(34, 28, 22, 0.14);
  --font-display: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.022em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); font-weight: 700; line-height: 1.25; }
h4 { font-size: 1.08rem; font-weight: 700; line-height: 1.3; }
p { margin: 0 0 1.1em; }
strong { color: var(--ink); }

.container { width: min(1160px, 92vw); margin-inline: auto; }
.container-narrow { width: min(820px, 92vw); margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p, .section-dark li { color: #cfc9d6; }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.lead { font-size: clamp(1.1rem, 1.9vw, 1.28rem); line-height: 1.55; color: var(--ink-soft); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 72px; }
.brand { display: flex; align-items: baseline; gap: 0.55rem; text-decoration: none !important; }
.brand-name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.brand-name sup { font-size: 0.55em; font-weight: 600; color: var(--pink); }
.brand-by { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 0.95rem; font-weight: 550; color: var(--ink-soft); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--pink-dark); text-decoration: none; }
.nav-toggle { display: none; background: none; border: 0; padding: 0.5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 0.85rem 1.7rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none !important; transition: all 0.2s ease;
  line-height: 1.2;
}
.btn-primary { background: var(--pink); color: #fff; box-shadow: 0 8px 24px rgba(229, 68, 124, 0.32); }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--pink); color: var(--pink-dark); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); }
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3); }
.btn-wa:hover { background: #1eb958; transform: translateY(-2px); color: #fff; }
.btn svg { flex: none; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--dark);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(13, 9, 18, 0.93) 12%, rgba(20, 12, 24, 0.72) 48%, rgba(20, 12, 24, 0.25) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3.5rem, 8vw, 6.5rem); }
.hero .eyebrow { color: #ff9dbf; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero h1 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(1.08rem, 2vw, 1.3rem); color: #ded8e4; max-width: 54ch; margin-bottom: 1.8rem; }
.hero-price {
  display: inline-flex; flex-wrap: wrap; align-items: baseline; gap: 0.6rem;
  background: rgba(255, 255, 255, 0.09); border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px); border-radius: 16px; padding: 0.9rem 1.4rem; margin: 0 0 2rem;
}
.hero-price .from { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #ffb3cd; }
.hero-price .amount { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 2.9rem); font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.hero-price .note { font-size: 0.92rem; color: #cfc9d6; width: 100%; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.4rem; }
.hero-note { font-size: 0.85rem; color: #a89fb3; max-width: 60ch; }
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem); margin-top: clamp(2rem, 5vw, 3.5rem); padding-top: 1.8rem; border-top: 1px solid rgba(255, 255, 255, 0.16); }
.hero-stats .stat b { display: block; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: #fff; }
.hero-stats .stat span { font-size: 0.86rem; color: #b9b1c4; }

/* ---------- Logo strip ---------- */
.logo-strip { padding: 2rem 0; border-bottom: 1px solid var(--line); }
.logo-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.6rem, 5vw, 4rem); }
.logo-strip p { margin: 0; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.logo-strip img { height: 30px; width: auto; filter: grayscale(1); opacity: 0.65; transition: 0.2s; }
.logo-strip img:hover { filter: none; opacity: 1; }

/* ---------- Answer box (AEO) ---------- */
.answer-box {
  background: var(--pink-soft); border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.3rem 1.6rem; margin: 0 0 2rem;
}
.answer-box p { margin: 0; font-size: 1.02rem; }
.answer-box .label { display: block; font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink-dark); margin-bottom: 0.4rem; }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .card-icon {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: var(--pink-soft); color: var(--pink-dark); margin-bottom: 1.1rem;
}
.card .card-icon svg { width: 24px; height: 24px; }
.card p { font-size: 0.98rem; }
.card ul { padding-left: 1.15rem; margin: 0.6rem 0 1rem; font-size: 0.95rem; }
.card ul li { margin-bottom: 0.35rem; }
.card .card-link { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.card-cap {
  display: inline-block; font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  color: var(--pink-dark); background: var(--pink-soft); border-radius: 999px;
  padding: 0.28rem 0.8rem; margin-bottom: 0.9rem;
}
.pillar-card { display: flex; flex-direction: column; }
.pillar-card .card-link { margin-top: auto; }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.checklist { list-style: none; padding: 0; margin: 1.4rem 0; }
.checklist li { position: relative; padding-left: 2rem; margin-bottom: 0.75rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.32em; width: 20px; height: 20px;
  border-radius: 50%; background: var(--pink-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c73066' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}
.section-dark .checklist li::before { background-color: rgba(229, 68, 124, 0.2); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem 1.5rem; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-family: var(--font-display); font-size: 0.95rem; font-weight: 800;
  color: var(--pink); margin-bottom: 0.8rem;
}
.step h3 { font-size: 1.08rem; margin-bottom: 0.45rem; }
.step p { font-size: 0.92rem; margin: 0; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: 0.97rem; background: #fff; min-width: 560px; }
th, td { text-align: left; padding: 0.9rem 1.1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); background: var(--bg-alt); }
tr:last-child td { border-bottom: 0; }
td b { color: var(--ink); }

/* ---------- Fees ---------- */
.fee-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.fee-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; background: #fff; text-align: left; }
.fee-card.highlight { background: var(--dark); border-color: var(--dark); }
.fee-card.highlight * { color: #fff; }
.fee-card.highlight .fee-label { color: #ff9dbf; }
.fee-label { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.fee-amount { font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 0.4rem; }
.fee-card p { font-size: 0.92rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  cursor: pointer; list-style: none; padding: 1.25rem 0;
  font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none; width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--line); display: grid; place-items: center;
  font-weight: 500; font-size: 1.2rem; color: var(--pink-dark); transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--pink-soft); border-color: var(--pink-soft); }
.faq-item .faq-a { padding: 0 0 1.4rem; max-width: 70ch; }
.faq-item .faq-a p { margin-bottom: 0.7em; }
.faq-item .faq-a p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--grad); }
.cta-band .container { position: relative; z-index: 1; text-align: center; padding-block: clamp(3.5rem, 8vw, 5.5rem); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.92); max-width: 56ch; margin-inline: auto; }
.cta-band .btn-light { color: var(--pink-dark); }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 1.8rem; }
.cta-small { font-size: 0.85rem !important; opacity: 0.85; margin-top: 1.2rem !important; }

/* ---------- Articles ---------- */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.article-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.22s, box-shadow 0.22s; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.article-card .article-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.article-card .tag { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.6rem; }
.article-card h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.article-card h3 a { color: var(--ink); }
.article-card h3 a:hover { color: var(--pink-dark); text-decoration: none; }
.article-card p { font-size: 0.92rem; margin-bottom: 1rem; }
.article-card .meta { margin-top: auto; font-size: 0.8rem; color: var(--muted); }

/* Article page */
.article-hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 0; }
.breadcrumbs { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.4rem; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--pink-dark); }
.article-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; font-size: 0.88rem; color: var(--muted); margin: 1rem 0 2rem; }
.article-figure { border-radius: var(--radius); overflow: hidden; margin: 0 0 2.5rem; }
.article-body-text { font-size: 1.05rem; }
.article-body-text h2 { font-size: clamp(1.5rem, 2.8vw, 1.9rem); margin-top: 2.4em; }
.article-body-text h3 { margin-top: 1.8em; }
.article-body-text ul, .article-body-text ol { padding-left: 1.3rem; margin-bottom: 1.2em; }
.article-body-text li { margin-bottom: 0.45rem; }
.article-body-text .table-wrap { margin: 1.5rem 0 2rem; }
.article-body-text blockquote {
  margin: 1.8rem 0; padding: 1.2rem 1.6rem; border-left: 4px solid var(--pink);
  background: var(--bg-alt); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: normal; color: var(--ink);
}
.kt { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.7rem; margin: 2rem 0; }
.kt h3, .kt h4 { margin-top: 0 !important; }
.kt ul { margin-bottom: 0; }
.article-cta { background: var(--dark); border-radius: var(--radius); padding: 2rem; margin: 3rem 0 1rem; }
.article-cta h3 { color: #fff; margin-top: 0 !important; }
.article-cta p { color: #cfc9d6; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #b9b1c4; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; font-size: 0.93rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.8rem; }
.site-footer h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: #b9b1c4; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand-name { color: #fff; font-size: 1.5rem; }
.footer-brand p { max-width: 40ch; margin-top: 0.8rem; }
.footer-legal { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 1.6rem; font-size: 0.8rem; color: #8d8499; }
.footer-legal p { margin-bottom: 0.5em; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0 !important; }
.center { text-align: center; }
.small { font-size: 0.88rem; color: var(--muted); }
.badge-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.2rem 0; }
.badge { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; padding: 0.35rem 0.9rem; border-radius: 999px; background: var(--pink-soft); color: var(--pink-dark); }
.section-dark .badge { background: rgba(229, 68, 124, 0.18); color: #ff9dbf; }

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .article-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  body { font-size: 1rem; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; z-index: 55;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 0.6rem 4vw 1.2rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.8rem 0; font-size: 1.05rem; }
  .nav-links .nav-cta { margin-top: 0.6rem; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .grid-2, .grid-3, .grid-4, .steps, .fee-row, .article-grid, .split { grid-template-columns: 1fr; }
  .split-img { order: -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-bg img { object-position: 62% 50%; }
  th, td { padding: 0.75rem 0.85rem; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero h1 { max-width: 18ch; }
}

/* ---------- Pagination ---------- */
.pagination { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 2.6rem; }
.pagination a { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; text-decoration: none; }
.pg-num { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid var(--line); color: var(--ink); }
.pg-num:hover { border-color: var(--pink); color: var(--pink-dark); }
.pg-num[aria-current="page"] { background: var(--pink); border-color: var(--pink); color: #fff; }
.pg-btn { padding: 0.55rem 1.1rem; border-radius: 999px; border: 1.5px solid var(--line); color: var(--ink); }
.pg-btn:hover { border-color: var(--pink); color: var(--pink-dark); }
