/* ==========================================================================
   PUNCAK.ID — investor pitch page (/invest).
   Loaded ONLY by views/invest_templates.xml via a plain <link> tag; NOT part
   of web.assets_frontend. Everything scoped under .puncak.
   Theme intentionally MATCHES the landing page (karybian.co.id /): light
   surfaces, Poppins body + Volkhov display, navy headings, summit-yellow CTA
   and terracotta eyebrow, forest-green for data. Same fonts/tokens as
   static/src/css/landing.css so /invest reads as one site.
   ========================================================================== */

.puncak {
    --ink: #181e4b;          /* navy — headings */
    --ink-2: #14183e;
    --text: #5e6282;         /* body */
    --text-2: #84829a;       /* muted */
    --accent: #df6951;       /* terracotta — eyebrows */
    --cta: #f1a501;          /* summit yellow — CTAs, key figures */
    --cta-soft: #ffb229;
    --green: #2C5F2D;        /* forest — chart primary */
    --green-soft: #8AAE5D;
    --white: #ffffff;
    --off: #f7f8f3;          /* off-white alternate section */
    --off-2: #eef2e8;
    --line: rgba(24,30,75,.1);
    --shadow:
        0 2px 3px rgba(0,0,0,.004), 0 8px 6px rgba(0,0,0,.008),
        0 20px 13px rgba(0,0,0,.012), 0 40px 26px rgba(0,0,0,.016),
        0 80px 60px rgba(0,0,0,.02);

    font-family: 'Poppins', 'Quicksand', system-ui, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.puncak * { box-sizing: border-box; }
.puncak h1, .puncak h2, .puncak h3, .puncak .display {
    font-family: 'Volkhov', 'Fraunces', Georgia, serif;
    font-weight: 700; color: var(--ink); line-height: 1.15; letter-spacing: -.01em;
}
.puncak a { color: inherit; text-decoration: none; }
.pk-container { max-width: none; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 4rem); }  /* full-width + side gap */
.pk-narrow { max-width: 1100px; }
.puncak section[id], .puncak header[id] { scroll-margin-top: 84px; }

/* ---- Section rhythm: white / off-white (no dark sections) -------------- */
.pk-section { padding: 5rem 0; position: relative; }
.pk-light { background: var(--white); }
.pk-dark { background: var(--off); }          /* "dark" kept as class, now a soft tint */
.pk-darker { background: var(--off-2); }
.pk-light-2 { background: var(--off); }
.pk-contour { display: none; }                /* not used in the light theme */
@media (max-width: 640px) { .pk-section { padding: 3.25rem 0; } }

/* ---- Eyebrows + headings ---------------------------------------------- */
.pk-eyebrow {
    font-family: 'Poppins', sans-serif; font-size: .8rem; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin: 0 0 1rem;
}
.pk-h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 0 0 1rem; }
.pk-lead { font-size: 1.1rem; max-width: 46rem; color: var(--text); margin: 0 0 2rem; }
.pk-note {
    font-size: .82rem; line-height: 1.6; color: var(--text-2);
    border-left: 3px solid var(--green-soft); padding: .1rem 0 .1rem .9rem;
    margin: 1.6rem 0 0; max-width: 52rem;
}

/* ---- Sticky nav (matches landing .ld-nav) ------------------------------ */
.pk-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; gap: 1rem; min-height: 68px;
    padding: .7rem clamp(1.25rem, 4vw, 4rem); background: rgba(255,255,255,.9);
    backdrop-filter: blur(10px); transition: box-shadow .25s ease;
}
.pk-nav.is-stuck { box-shadow: 0 6px 24px rgba(24,30,75,.08); }
.pk-brand { display: inline-flex; align-items: center; gap: .5rem; font-family: 'Volkhov', serif; font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.pk-brand img { height: 36px; width: auto; object-fit: contain; }
.pk-brand .fa { font-size: 1.5rem; color: var(--accent); }
.pk-nav-links { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
.pk-nav-link { color: var(--ink); font-size: .92rem; font-weight: 500; position: relative; padding: .3rem 0; }
.pk-nav-link::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--cta); border-radius: 2px; transition: width .2s ease; }
.pk-nav-link:hover::after, .pk-nav-link.is-active::after { width: 100%; }
.pk-nav-cta { background: var(--cta); color: #fff !important; font-weight: 600; padding: .5rem 1.15rem; border-radius: 9px; font-size: .9rem; box-shadow: 0 12px 24px rgba(241,165,1,.28); }
.pk-nav-cta:hover { background: var(--cta-soft); color: #fff; }
.pk-nav-lang { display: inline-flex; gap: .4rem; align-items: center; }
/* flag chips reuse .mt-lang-btn/.mt-flag from mt_theme.css (loaded site-wide) */
.pk-nav-lang .mt-lang-btn { opacity: .5; }
.pk-nav-lang .mt-lang-btn.is-active { opacity: 1; box-shadow: 0 0 0 2px var(--cta); }
/* Account / profile nav */
.pk-nav-signin { display: inline-flex; align-items: center; gap: .4rem; background: var(--ink); color: #fff !important; border-radius: 8px; padding: .45rem .9rem; font-size: .88rem; font-weight: 500; }
.pk-nav-signin:hover { background: var(--ink-2); color: #fff !important; }
.pk-account .pk-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; border: 1px solid var(--line); background: #fff; padding: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.pk-account .pk-avatar img { width: 100%; height: 100%; object-fit: cover; }
.pk-account .pk-avatar .fa { font-size: 1.3rem; color: var(--ink); }
.pk-nav-toggle { display: none; margin-left: auto; background: none; border: 0; color: var(--ink); font-size: 1.4rem; cursor: pointer; }
@media (max-width: 860px) {
    .pk-nav-toggle { display: block; }
    .pk-nav-links { position: absolute; top: 100%; left: 0; right: 0; margin: 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; padding: .5rem 1.25rem 1rem; box-shadow: 0 18px 30px rgba(24,30,75,.12); display: none; }
    .pk-nav-links.is-open { display: flex; }
    .pk-nav-link { padding: .7rem .2rem; border-bottom: 1px solid var(--line); }
    .pk-nav-cta { text-align: center; margin-top: .6rem; }
    .pk-nav-lang { padding-top: .5rem; }
}

/* ---- Buttons ----------------------------------------------------------- */
.pk-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem;
    padding: .8rem 1.6rem; border-radius: 10px; border: 1px solid transparent; cursor: pointer;
    transition: transform .12s ease, background .2s ease, box-shadow .2s ease; text-align: center;
}
.pk-btn:focus-visible { outline: 3px solid var(--cta-soft); outline-offset: 2px; }
.pk-btn-primary { background: var(--cta); color: #fff; box-shadow: 0 14px 30px rgba(241,165,1,.3); }
.pk-btn-primary:hover { background: var(--cta-soft); color: #fff; transform: translateY(-2px); }
.pk-btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.pk-btn-ghost:hover { background: #fff7e6; border-color: var(--cta); }
.pk-btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.pk-btn-outline:hover { background: rgba(24,30,75,.04); }
.pk-btn-block { width: 100%; }

/* ---- Hero -------------------------------------------------------------- */
.pk-hero {
    background:
        radial-gradient(120% 120% at 85% -10%, #fff1da 0%, rgba(255,241,218,0) 55%),
        radial-gradient(90% 90% at 0% 110%, rgba(138,174,93,.18) 0%, rgba(138,174,93,0) 50%),
        var(--white);
    position: relative; overflow: hidden; padding: 8.5rem 0 0;
}
.pk-hero h1 { font-size: clamp(2.3rem, 5.6vw, 4.2rem); margin: 0 0 1.3rem; max-width: 16ch; color: var(--ink); }
.pk-hero .pk-lead { font-size: 1.15rem; max-width: 38rem; }
.pk-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0 2.6rem; }
.pk-hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; border-top: 1px solid var(--line); padding: 2rem 0 2.5rem; }
.pk-stat-num { font-family: 'Volkhov', serif; font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.7rem); color: var(--cta); line-height: 1; }
.pk-stat-label { font-size: .85rem; color: var(--text-2); margin-top: .5rem; }
@media (max-width: 640px) { .pk-hero { padding-top: 6.5rem; } .pk-hero-stats { grid-template-columns: 1fr; gap: 1.1rem; } }

/* ---- Ridgeline signature ---------------------------------------------- */
.pk-ridge { display: block; width: 100%; height: auto; }
.pk-ridge-hero { margin-top: 1.5rem; }
.pk-ridge-label { font-size: 9px; fill: var(--text-2); font-family: 'Poppins', sans-serif; letter-spacing: .04em; }
.pk-ridge-val { font-size: 10px; font-weight: 700; fill: var(--green); font-family: 'Poppins', sans-serif; }

/* ---- Cards / grids ----------------------------------------------------- */
.pk-grid { display: grid; gap: 1.25rem; }
.pk-grid-2 { grid-template-columns: repeat(2, 1fr); }
.pk-grid-3 { grid-template-columns: repeat(3, 1fr); }
.pk-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .pk-grid-3, .pk-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pk-grid-2, .pk-grid-3, .pk-grid-4 { grid-template-columns: 1fr; } }

.pk-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.6rem; height: 100%; box-shadow: var(--shadow); }
.pk-card-num { font-family: 'Volkhov', serif; font-weight: 700; font-size: 1.4rem; color: var(--accent); }
.pk-card h3 { font-size: 1.1rem; margin: .2rem 0 .5rem; }
.pk-card p { font-size: .92rem; color: var(--text); margin: 0; }
.pk-card-ico { width: 46px; height: 46px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: .9rem; background: rgba(44,95,45,.1); color: var(--green); }
.pk-card-ico svg { width: 22px; height: 22px; }

/* ---- Stat blocks ------------------------------------------------------- */
.pk-statblock .n { font-family: 'Volkhov', serif; font-weight: 700; font-size: clamp(1.6rem, 3.4vw, 2.3rem); color: var(--green); line-height: 1; }
.pk-statblock .l { font-size: .84rem; color: var(--text-2); margin-top: .5rem; }

/* ---- Tables ------------------------------------------------------------ */
.pk-tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 1.5rem; border-radius: 14px; box-shadow: var(--shadow); }
.pk-table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: .92rem; background: #fff; }
.pk-table th, .pk-table td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--line); }
.pk-table th { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-2); font-weight: 600; background: var(--off); }
.pk-table td.num, .pk-table th.num { text-align: right; font-variant-numeric: tabular-nums; }
.pk-table tbody tr:last-child td { border-bottom: 0; }
.pk-table tr.is-total td { font-weight: 700; color: var(--green); border-top: 2px solid var(--green-soft); }

/* ---- Charts ------------------------------------------------------------ */
.pk-chart { width: 100%; height: auto; }
.pk-legend { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 1.2rem; font-size: .85rem; color: var(--text); }
.pk-legend span { display: inline-flex; align-items: center; gap: .45rem; }
.pk-legend i { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }

/* Funnel */
.pk-funnel { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.5rem; }
.pk-funnel-bar { background: linear-gradient(90deg, var(--green), var(--green-soft)); color: #fff; border-radius: 9px; padding: .8rem 1rem; min-width: 40%; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-weight: 600; white-space: nowrap; }
.pk-funnel-bar .v { font-family: 'Volkhov', serif; }
.pk-funnel-row small { display: block; font-size: .78rem; color: var(--text-2); margin-top: .25rem; }

/* TAM/SAM/SOM */
.pk-tss { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.5rem; }
@media (max-width: 640px) { .pk-tss { grid-template-columns: 1fr; } }

/* ---- Timeline / roadmap ------------------------------------------------ */
.pk-timeline { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.pk-phase { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start; }
.pk-phase-badge { font-family: 'Volkhov', serif; font-size: 1.1rem; font-weight: 700; background: var(--cta); color: #fff; border-radius: 12px; width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }

/* ---- Ask / use of funds ------------------------------------------------ */
.pk-ask-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 860px) { .pk-ask-grid { grid-template-columns: 1fr; } }
.pk-fund-row { display: flex; align-items: center; gap: .9rem; margin-bottom: .9rem; }
.pk-fund-swatch { width: 14px; height: 14px; border-radius: 4px; flex: 0 0 auto; }
.pk-fund-track { flex: 1; height: 10px; background: rgba(24,30,75,.08); border-radius: 6px; overflow: hidden; }
.pk-fund-fill { display: block; height: 100%; border-radius: 6px; }
.pk-fund-pct { font-family: 'Volkhov', serif; font-weight: 700; min-width: 3ch; text-align: right; color: var(--ink); }

/* ---- Disclaimer -------------------------------------------------------- */
.pk-disclaimer { background: rgba(224,146,47,.08); border: 1px solid rgba(224,146,47,.35); border-radius: 14px; padding: 1.3rem 1.5rem; margin-top: 2rem; font-size: .86rem; color: var(--text); line-height: 1.65; }
.pk-disclaimer strong { color: #a6631a; }

/* ---- Investment / payment CTA ------------------------------------------ */
.pk-invest-box { background: var(--ink); color: #fff; border-radius: 20px; padding: 1.9rem; max-width: 560px; box-shadow: var(--shadow); }
.pk-invest-box h3 { color: #fff; }
.pk-invest-box .pk-eyebrow { color: var(--cta-soft); }
.pk-invest-lead { color: rgba(255,255,255,.72); font-size: .92rem; }
.pk-amount-input { display: flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 12px; padding: .3rem .9rem; margin: 1rem 0; }
.pk-amount-input span { color: rgba(255,255,255,.7); font-weight: 600; }
.pk-amount-input input { flex: 1; background: none; border: 0; color: #fff; font-size: 1.6rem; font-family: 'Volkhov', serif; padding: .5rem 0; outline: none; width: 100%; }
.pk-amount-input input::placeholder { color: rgba(255,255,255,.35); }
.pk-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.pk-chip { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff; border-radius: 999px; padding: .35rem .85rem; font-size: .82rem; cursor: pointer; }
.pk-chip:hover, .pk-chip.is-active { background: var(--cta); color: #fff; border-color: var(--cta); }
.pk-invest-note { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: .9rem; }
.pk-badge-investor { display: inline-flex; align-items: center; gap: .4rem; background: rgba(138,174,93,.2); border: 1px solid var(--green-soft); color: #cfe3ad; border-radius: 999px; padding: .3rem .8rem; font-size: .8rem; font-weight: 600; }

/* ---- Contact ----------------------------------------------------------- */
.pk-recap { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.5rem 0; }
.pk-recap-chip { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: .6rem .9rem; font-size: .85rem; color: var(--text); box-shadow: var(--shadow); }
.pk-recap-chip b { color: var(--cta); font-family: 'Volkhov', serif; }

/* ---- Footer ------------------------------------------------------------ */
.pk-footer { background: var(--ink); color: rgba(255,255,255,.66); padding: 2.5rem 0; font-size: .85rem; text-align: center; }
.pk-footer .pk-conf { color: var(--cta-soft); }

/* ---- Motion (guarded) -------------------------------------------------- */
.pk-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.pk-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .puncak * { scroll-behavior: auto !important; }
    .pk-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    .pk-btn:hover { transform: none !important; }
}

/* ---- Admin-only floating settings button (edit this page's content) ------ */
.puncak .pk-admin-gear {
    position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 1200;
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--ink); color: #fff; border-radius: 999px;
    padding: .7rem 1.15rem; font-size: .9rem; font-weight: 600;
    box-shadow: 0 12px 30px rgba(24, 30, 75, .35); text-decoration: none;
}
.puncak .pk-admin-gear:hover { background: var(--ink-2); color: var(--cta-soft); }

/* ---- Auth popups: match the invest theme (scoped to .puncak so the mdpl
       popups are untouched). The login/signup/forgot modals are rendered
       inside the .puncak wrapper on /invest. --------------------------------- */
.puncak .modal-content { font-family: 'Poppins', sans-serif; border: 0; border-radius: 18px; box-shadow: var(--shadow); }
.puncak .modal-title { font-family: 'Volkhov', serif; color: var(--ink); }
.puncak .modal-title .fa { color: var(--accent) !important; }
.puncak .modal .form-label { color: var(--ink); }
.puncak .modal .form-control { border-radius: 10px; }
.puncak .modal .form-control:focus { border-color: var(--cta); box-shadow: 0 0 0 .2rem rgba(241,165,1,.2); }
.puncak .modal .btn-primary {
    background: var(--cta); border-color: var(--cta); color: #fff; font-weight: 600; border-radius: 10px;
}
.puncak .modal .btn-primary:hover { background: var(--cta-soft); border-color: var(--cta-soft); color: #fff; }
.puncak .modal a, .puncak .modal .text-primary { color: var(--accent) !important; }
.puncak .modal .form-check-input:checked { background-color: var(--cta); border-color: var(--cta); }

/* ---- Print ------------------------------------------------------------- */
@media print {
    .pk-nav, .pk-nav-toggle { display: none !important; }
    .puncak, .pk-dark, .pk-darker, .pk-hero { background: #fff !important; }
    .pk-card, .pk-table { box-shadow: none !important; border: 1px solid #ccc !important; }
    .pk-reveal { opacity: 1 !important; transform: none !important; }
    .pk-invest-box { display: none !important; }
}

/* =======================================================================
   Enquiry dialog for "Request the full deck" / "Schedule a meeting" (§35)

   Hand-rolled rather than Bootstrap's modal: /invest is self-contained and
   must keep working even if the mdpl app bundle never loads. The confirmation
   landing page (contact_request_result) reuses .pk-result-icon from here —
   remember that each public page's stylesheet must carry its OWN rules (a
   selector living only in landing.css silently does nothing here, §32b).
   ======================================================================= */
.pk-modal {
    position: fixed;
    inset: 0;
    z-index: 2200;                 /* above the sticky nav */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.pk-modal[hidden] { display: none; }
.pk-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 24, 20, .62);
    backdrop-filter: blur(2px);
}
.pk-modal-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.75rem 1.6rem;
    width: min(560px, 100%);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(10, 24, 20, .3);
}
.pk-modal-x {
    position: absolute;
    top: .6rem;
    right: .8rem;
    background: none;
    border: 0;
    font-size: 1.7rem;
    line-height: 1;
    color: #94a3b8;
    cursor: pointer;
    padding: .2rem .4rem;
}
.pk-modal-x:hover { color: #12241f; }
.pk-modal-title {
    font-family: Volkhov, Georgia, serif;
    font-size: 1.45rem;
    margin: 0 0 .4rem;
    color: #12241f;
}
.pk-modal-sub {
    margin: 0 0 1.4rem;
    color: #5b6b66;
    font-size: .93rem;
    line-height: 1.55;
}

.pk-field { display: block; margin-bottom: 1rem; }
.pk-field[hidden] { display: none; }
.pk-field > span {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: #33443f;
    margin-bottom: .35rem;
}
.pk-field > span i { font-weight: 400; color: #8b9995; font-style: normal; }
.pk-field input,
.pk-field textarea {
    width: 100%;
    border: 1px solid #d7dedb;
    border-radius: 10px;
    padding: .65rem .8rem;
    font: inherit;
    font-size: .94rem;
    color: #12241f;
    background: #fbfcfc;
}
.pk-field textarea { resize: vertical; min-height: 8rem; line-height: 1.55; }
.pk-field input:focus,
.pk-field textarea:focus {
    outline: none;
    border-color: var(--cta, #12241f);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(18, 36, 31, .08);
}

.pk-modal-note {
    font-size: .82rem;
    color: #7c8a86;
    line-height: 1.55;
    margin: 0 0 1rem;
}
.pk-modal-note[hidden] { display: none; }
.pk-modal-msg {
    border-radius: 10px;
    padding: .7rem .85rem;
    font-size: .89rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.pk-modal-msg[hidden] { display: none; }
.pk-modal-msg.is-error { background: #fdecec; color: #a02020; }
.pk-modal-msg.is-ok { background: #eaf4e2; color: #3d6320; }
.pk-modal-actions {
    display: flex;
    gap: .7rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.pk-modal-actions .pk-btn[hidden] { display: none; }

/* Confirmation landing page (contact_request_result) */
.pk-result-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    background: #eaf4e2;
    color: #4a7c26;
}
.pk-result-icon[data-ok="0"] { background: #fdecec; color: #a02020; }

@media (max-width: 480px) {
    .pk-modal-card { padding: 1.6rem 1.15rem 1.2rem; border-radius: 14px; }
    .pk-modal-actions .pk-btn { flex: 1 1 100%; }
}
