@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Nunito+Sans:wght@400;600;700&display=swap');

:root {
  --rp-bg: #FFFFFF;
  --rp-wash: #EEF2FF;
  --rp-muted-bg: #EBEEF8;
  --rp-primary: #4338CA;
  --rp-primary-bright: #4F46E5;
  --rp-accent: #15803D;
  --rp-accent-soft: #DCFCE7;
  --rp-ink: #1E1B4B;
  --rp-slate: #334155;
  --rp-border: #C7D2FE;
  --rp-border-soft: #E0E7FF;
  --rp-white: #FFFFFF;
  --rp-shadow: 0 12px 30px rgba(67, 56, 202, 0.10);
  --rp-shadow-sm: 0 6px 16px rgba(67, 56, 202, 0.08);
  --rp-radius: 18px;
  --rp-radius-lg: 26px;
  --rp-radius-pill: 999px;
  --rp-font-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --rp-font-body: "Nunito Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --rp-maxw: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--rp-font-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--rp-slate);
  background: var(--rp-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--rp-font-head);
  color: var(--rp-ink);
  line-height: 1.22;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(1.95rem, 4.2vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.22rem; }

p { margin: 0 0 1.1em; }

a { color: var(--rp-primary); text-decoration: none; }
a:hover { color: var(--rp-primary-bright); }

img { max-width: 100%; display: block; }

.rp-wrap { width: 100%; max-width: var(--rp-maxw); margin: 0 auto; padding: 0 22px; }

.rp-icon { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.rp-skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--rp-primary); color: #fff; padding: 10px 18px; border-radius: 0 0 12px 0;
}
.rp-skip:focus { left: 0; color: #fff; }

.rp-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--rp-font-head); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--rp-primary);
  background: var(--rp-wash); border: 1px solid var(--rp-border-soft);
  padding: 6px 14px; border-radius: var(--rp-radius-pill); margin-bottom: 18px;
}
.rp-eyebrow .rp-step-num {
  display: inline-grid; place-items: center; width: 22px; height: 22px;
  background: var(--rp-primary); color: #fff; border-radius: 50%; font-size: 0.72rem;
}

.rp-level {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--rp-font-head); font-weight: 600; font-size: 0.72rem;
  padding: 4px 11px; border-radius: var(--rp-radius-pill);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.rp-level.is-pemula { background: var(--rp-accent-soft); color: var(--rp-accent); }
.rp-level.is-dasar { background: var(--rp-wash); color: var(--rp-primary); }
.rp-level.is-lanjutan { background: #FCE7F3; color: #9D174F; }

.rp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--rp-font-head); font-weight: 600; font-size: 0.98rem;
  padding: 13px 24px; border-radius: var(--rp-radius-pill); border: 2px solid transparent;
  cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.rp-btn-primary { background: var(--rp-primary); color: #fff; box-shadow: var(--rp-shadow-sm); }
.rp-btn-primary:hover { background: var(--rp-primary-bright); color: #fff; transform: translateY(-2px); box-shadow: var(--rp-shadow); }
.rp-btn-ghost { background: #fff; color: var(--rp-primary); border-color: var(--rp-border); }
.rp-btn-ghost:hover { background: var(--rp-wash); color: var(--rp-primary); transform: translateY(-2px); }
.rp-btn .rp-icon { width: 18px; height: 18px; }

.rp-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--rp-border-soft); }
.rp-nav { display: flex; align-items: center; gap: 18px; padding: 14px 0; }
.rp-brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.rp-brand-mark {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--rp-primary), var(--rp-primary-bright));
  border-radius: 14px; color: #fff;
}
.rp-brand-mark .rp-icon { width: 24px; height: 24px; }
.rp-brand-text strong { display: block; font-family: var(--rp-font-head); font-weight: 700; color: var(--rp-ink); font-size: 1.08rem; line-height: 1.2; }
.rp-brand-text span { display: block; font-size: 0.78rem; color: var(--rp-slate); }

.rp-steps-nav { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.rp-steps-nav li { display: flex; align-items: center; }
.rp-steps-nav a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--rp-font-head); font-weight: 600; font-size: 0.9rem; color: var(--rp-slate);
  padding: 9px 14px; border-radius: var(--rp-radius-pill); transition: background 0.16s ease, color 0.16s ease;
}
.rp-steps-nav a:hover { background: var(--rp-wash); color: var(--rp-primary); }
.rp-steps-nav .rp-chip-num {
  display: inline-grid; place-items: center; width: 22px; height: 22px;
  border: 1.5px solid var(--rp-border); border-radius: 50%; font-size: 0.74rem; color: var(--rp-primary);
}
.rp-nav-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--rp-primary); color: #fff; font-family: var(--rp-font-head); font-weight: 600; font-size: 0.9rem; padding: 10px 18px; border-radius: var(--rp-radius-pill); }
.rp-nav-cta:hover { background: var(--rp-primary-bright); color: #fff; }
.rp-nav-cta .rp-icon { width: 17px; height: 17px; }

.rp-burger { display: none; align-items: center; justify-content: center; width: 46px; height: 46px; border: 1px solid var(--rp-border); background: #fff; border-radius: 12px; color: var(--rp-primary); cursor: pointer; }
.rp-burger .rp-icon { width: 24px; height: 24px; }

.rp-hero {
  position: relative; color: #fff;
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.86), rgba(67, 56, 202, 0.78)), url('../img/ruang-hero-jalur.jpg');
  background-size: cover; background-position: center;
}
.rp-hero-inner { min-height: 560px; display: flex; flex-direction: column; justify-content: center; padding: 78px 0; max-width: 720px; }
.rp-hero .rp-eyebrow { color: #fff; background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.28); }
.rp-hero .rp-eyebrow .rp-step-num { background: #fff; color: var(--rp-primary); }
.rp-hero h1 { color: #fff; margin-bottom: 0.4em; }
.rp-hero-sub { font-size: 1.16rem; color: rgba(255, 255, 255, 0.92); max-width: 600px; margin-bottom: 28px; }
.rp-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.rp-hero .rp-btn-ghost { background: rgba(255, 255, 255, 0.12); color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.rp-hero .rp-btn-ghost:hover { background: rgba(255, 255, 255, 0.22); color: #fff; }

.rp-stepline { display: flex; flex-wrap: wrap; align-items: stretch; gap: 0; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.22); border-radius: var(--rp-radius); padding: 6px; max-width: 560px; }
.rp-stepline-item { display: flex; align-items: center; gap: 11px; padding: 12px 16px; flex: 1 1 150px; }
.rp-stepline-num { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #fff; color: var(--rp-primary); font-family: var(--rp-font-head); font-weight: 700; }
.rp-stepline-item strong { display: block; font-family: var(--rp-font-head); font-weight: 600; color: #fff; font-size: 0.95rem; }
.rp-stepline-item span { display: block; font-size: 0.8rem; color: rgba(255, 255, 255, 0.8); }
.rp-stepline-arrow { display: flex; align-items: center; color: rgba(255, 255, 255, 0.5); }

.rp-section { padding: 78px 0; }
.rp-section.is-wash { background: var(--rp-wash); }
.rp-section.is-muted { background: var(--rp-muted-bg); }
.rp-section-head { max-width: 720px; margin-bottom: 44px; }
.rp-section-head.is-center { margin-left: auto; margin-right: auto; text-align: center; }
.rp-section-head.is-center .rp-eyebrow { margin-left: auto; margin-right: auto; }
.rp-lead { font-size: 1.08rem; color: var(--rp-slate); }

.rp-reader-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: 22px; }
.rp-reader-card { background: #fff; border: 1px solid var(--rp-border-soft); border-radius: var(--rp-radius); padding: 28px 24px; box-shadow: var(--rp-shadow-sm); transition: transform 0.18s ease, box-shadow 0.18s ease; }
.rp-reader-card:hover { transform: translateY(-5px); box-shadow: var(--rp-shadow); }
.rp-reader-ico { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 15px; background: var(--rp-wash); color: var(--rp-primary); margin-bottom: 18px; }
.rp-reader-ico .rp-icon { width: 26px; height: 26px; }
.rp-reader-card h3 { margin-bottom: 0.4em; }
.rp-reader-card p { font-size: 0.97rem; margin-bottom: 0; }

.rp-about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.rp-about-media img { border-radius: var(--rp-radius-lg); box-shadow: var(--rp-shadow); width: 100%; }
.rp-ladder { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 16px; }
.rp-ladder li { display: flex; gap: 16px; align-items: flex-start; }
.rp-ladder-num { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--rp-primary); color: #fff; font-family: var(--rp-font-head); font-weight: 700; flex: none; }
.rp-ladder li strong { display: block; font-family: var(--rp-font-head); color: var(--rp-ink); font-weight: 600; margin-bottom: 2px; }
.rp-ladder li span { display: block; font-size: 0.95rem; }

.rp-qa-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 24px; }
.rp-qa-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--rp-border-soft); border-radius: var(--rp-radius); overflow: hidden; box-shadow: var(--rp-shadow-sm); transition: transform 0.18s ease, box-shadow 0.18s ease; }
.rp-qa-card:hover { transform: translateY(-5px); box-shadow: var(--rp-shadow); }
.rp-qa-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--rp-wash); }
.rp-qa-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.rp-qa-card:hover .rp-qa-thumb img { transform: scale(1.05); }
.rp-qa-thumb .rp-level { position: absolute; top: 12px; left: 12px; box-shadow: var(--rp-shadow-sm); }
.rp-qa-body { display: flex; flex-direction: column; flex: 1; padding: 24px 22px; }
.rp-qa-meta { font-size: 0.8rem; color: var(--rp-primary); font-family: var(--rp-font-head); font-weight: 600; margin-bottom: 10px; }
.rp-qa-question { display: flex; gap: 10px; align-items: flex-start; font-family: var(--rp-font-head); font-weight: 600; color: var(--rp-ink); font-size: 1.08rem; line-height: 1.4; margin-bottom: 12px; }
.rp-qa-question .rp-q-mark { display: inline-grid; place-items: center; width: 26px; height: 26px; flex: none; border-radius: 8px; background: var(--rp-wash); color: var(--rp-primary); font-weight: 700; font-size: 0.85rem; }
.rp-qa-question a { color: var(--rp-ink); }
.rp-qa-question a:hover { color: var(--rp-primary); }
.rp-qa-body p { font-size: 0.95rem; margin-bottom: 16px; }
.rp-readlink { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-family: var(--rp-font-head); font-weight: 600; font-size: 0.92rem; color: var(--rp-primary); }
.rp-readlink .rp-icon { width: 17px; height: 17px; transition: transform 0.18s ease; }
.rp-readlink:hover .rp-icon { transform: translateX(4px); }

.rp-faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.rp-faq-item { background: #fff; border: 1px solid var(--rp-border-soft); border-radius: var(--rp-radius); overflow: hidden; }
.rp-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 24px; font-family: var(--rp-font-head); font-weight: 600; font-size: 1.05rem; color: var(--rp-ink); }
.rp-faq-q .rp-faq-ico { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--rp-wash); color: var(--rp-primary); flex: none; transition: transform 0.22s ease, background 0.22s ease; }
.rp-faq-item.is-open .rp-faq-ico { transform: rotate(45deg); background: var(--rp-primary); color: #fff; }
.rp-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.rp-faq-a-inner { padding: 0 24px 22px; color: var(--rp-slate); font-size: 0.98rem; }
.rp-faq-item.is-open .rp-faq-a { max-height: 480px; }

.rp-mission-band { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 52px; align-items: center; }
.rp-mission-media img { border-radius: var(--rp-radius-lg); box-shadow: var(--rp-shadow); width: 100%; }

.rp-risk-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 20px; }
.rp-risk-note { display: inline-flex; align-items: center; gap: 9px; font-size: 0.85rem; font-family: var(--rp-font-head); font-weight: 600; color: var(--rp-accent); background: var(--rp-accent-soft); padding: 7px 15px; border-radius: var(--rp-radius-pill); margin-bottom: 26px; }
.rp-risk-card { background: #fff; border: 1px solid var(--rp-border-soft); border-radius: var(--rp-radius); padding: 24px 22px; display: flex; gap: 15px; align-items: flex-start; }
.rp-risk-ico { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--rp-wash); color: var(--rp-primary); flex: none; }
.rp-risk-card h3 { font-size: 1.05rem; margin-bottom: 0.35em; }
.rp-risk-card p { font-size: 0.93rem; margin-bottom: 0; }

.rp-cta-band { background: linear-gradient(135deg, var(--rp-primary), var(--rp-primary-bright)); color: #fff; border-radius: var(--rp-radius-lg); padding: 56px 44px; text-align: center; }
.rp-cta-band h2 { color: #fff; }
.rp-cta-band p { color: rgba(255, 255, 255, 0.92); max-width: 620px; margin: 0 auto 26px; }
.rp-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.rp-cta-band .rp-btn-primary { background: #fff; color: var(--rp-primary); }
.rp-cta-band .rp-btn-primary:hover { background: var(--rp-wash); color: var(--rp-primary); }
.rp-cta-band .rp-btn-ghost { background: rgba(255, 255, 255, 0.12); color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.rp-cta-band .rp-btn-ghost:hover { background: rgba(255, 255, 255, 0.2); color: #fff; }

.rp-page-hero { background: var(--rp-wash); border-bottom: 1px solid var(--rp-border-soft); padding: 56px 0; }
.rp-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--rp-slate); margin-bottom: 18px; }
.rp-breadcrumb a { color: var(--rp-primary); }
.rp-breadcrumb span { color: var(--rp-slate); }

.rp-prose { max-width: 760px; }
.rp-prose h2 { margin-top: 1.7em; }
.rp-prose h3 { margin-top: 1.4em; color: var(--rp-primary); }
.rp-prose ul, .rp-prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.rp-prose li { margin-bottom: 0.5em; }
.rp-prose-block { background: var(--rp-wash); border: 1px solid var(--rp-border-soft); border-left: 4px solid var(--rp-primary); border-radius: 14px; padding: 22px 24px; margin: 0 0 1.4em; }
.rp-prose-block.is-accent { background: var(--rp-accent-soft); border-left-color: var(--rp-accent); }
.rp-prose-block h3 { margin-top: 0; }
.rp-prose-block p:last-child { margin-bottom: 0; }

.rp-article-head { margin-bottom: 26px; }
.rp-article-head h1 { margin-top: 12px; }
.rp-byline { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--rp-slate); margin-top: 14px; }
.rp-byline .rp-icon { width: 18px; height: 18px; color: var(--rp-primary); }
.rp-article-cover { border-radius: var(--rp-radius-lg); box-shadow: var(--rp-shadow); margin: 8px 0 30px; width: 100%; }

.rp-step-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0; }

.rp-prevnext { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 52px; border-top: 1px solid var(--rp-border-soft); padding-top: 34px; }
.rp-prevnext a { display: flex; flex-direction: column; gap: 4px; background: #fff; border: 1px solid var(--rp-border-soft); border-radius: var(--rp-radius); padding: 18px 22px; transition: border-color 0.18s ease, transform 0.18s ease; }
.rp-prevnext a:hover { border-color: var(--rp-border); transform: translateY(-3px); }
.rp-prevnext .is-next { text-align: right; align-items: flex-end; }
.rp-prevnext small { font-family: var(--rp-font-head); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rp-primary); }
.rp-prevnext strong { font-family: var(--rp-font-head); color: var(--rp-ink); font-weight: 600; font-size: 0.98rem; }

.rp-faqform { display: grid; grid-template-columns: 1fr; gap: 0; }
.rp-contact-row { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 30px; align-items: start; margin-top: 8px; }
.rp-form-card { background: #fff; border: 1px solid var(--rp-border-soft); border-radius: var(--rp-radius-lg); padding: 32px; box-shadow: var(--rp-shadow-sm); }
.rp-field { margin-bottom: 18px; }
.rp-field label { display: block; font-family: var(--rp-font-head); font-weight: 600; font-size: 0.9rem; color: var(--rp-ink); margin-bottom: 7px; }
.rp-field input, .rp-field textarea { width: 100%; font-family: var(--rp-font-body); font-size: 1rem; color: var(--rp-ink); background: var(--rp-wash); border: 1px solid var(--rp-border-soft); border-radius: 12px; padding: 13px 15px; }
.rp-field input:focus, .rp-field textarea:focus { outline: none; border-color: var(--rp-primary); box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.16); background: #fff; }
.rp-field textarea { min-height: 130px; resize: vertical; }
.rp-form-note { font-size: 0.82rem; color: var(--rp-slate); margin-top: 4px; }
.rp-info-card { background: var(--rp-wash); border: 1px solid var(--rp-border-soft); border-radius: var(--rp-radius-lg); padding: 30px; }
.rp-info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.rp-info-list li { display: flex; gap: 14px; align-items: flex-start; }
.rp-info-ico { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: #fff; color: var(--rp-primary); border: 1px solid var(--rp-border-soft); flex: none; }
.rp-info-list strong { display: block; font-family: var(--rp-font-head); color: var(--rp-ink); font-weight: 600; font-size: 0.92rem; margin-bottom: 2px; }
.rp-info-list a { color: var(--rp-primary); word-break: break-word; }
.rp-info-list span { font-size: 0.93rem; color: var(--rp-slate); }

.rp-map { margin-top: 40px; }
.rp-map-frame { position: relative; width: 100%; height: 440px; border-radius: var(--rp-radius-lg); overflow: hidden; border: 1px solid var(--rp-border-soft); box-shadow: var(--rp-shadow-sm); }
.rp-map-frame iframe { width: 100%; height: 100%; border: 0; }
.rp-map-actions { margin-top: 16px; }

.rp-footer { background: var(--rp-ink); color: rgba(255, 255, 255, 0.82); padding: 60px 0 26px; }
.rp-footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 38px; }
.rp-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.rp-footer-brand strong { display: block; font-family: var(--rp-font-head); color: #fff; font-size: 1.1rem; margin-bottom: 12px; }
.rp-footer-brand p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.7); }
.rp-footer-contact { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.rp-footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.9rem; color: rgba(255, 255, 255, 0.78); }
.rp-footer-contact .rp-icon { width: 18px; height: 18px; color: var(--rp-border); margin-top: 3px; }
.rp-footer-contact a { color: rgba(255, 255, 255, 0.82); }
.rp-footer-contact a:hover { color: #fff; }
.rp-footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.rp-footer-col a, .rp-footer-col .rp-linkbtn { color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; background: none; border: none; padding: 0; cursor: pointer; font-family: var(--rp-font-body); text-align: left; }
.rp-footer-col a:hover, .rp-footer-col .rp-linkbtn:hover { color: #fff; }
.rp-footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.14); font-size: 0.84rem; color: rgba(255, 255, 255, 0.62); }

.rp-modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 22px; }
.rp-modal.is-open { display: flex; }
.rp-modal-scrim { position: absolute; inset: 0; background: rgba(30, 27, 75, 0.55); }
.rp-modal-box { position: relative; background: #fff; border-radius: var(--rp-radius-lg); padding: 38px 34px; max-width: 420px; text-align: center; box-shadow: var(--rp-shadow); }
.rp-modal-box .rp-modal-ico { display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--rp-accent-soft); color: var(--rp-accent); margin: 0 auto 16px; }
.rp-modal-box .rp-modal-ico .rp-icon { width: 30px; height: 30px; }
.rp-modal-box h3 { margin-bottom: 0.4em; }
.rp-modal-box p { margin-bottom: 0; font-size: 0.96rem; }

.rp-cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 250; background: #fff; border-top: 1px solid var(--rp-border); box-shadow: 0 -10px 30px rgba(30, 27, 75, 0.12); transform: translateY(100%); transition: transform 0.3s ease; }
.rp-cookie.is-visible { transform: translateY(0); }
.rp-cookie-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; padding: 18px 0; }
.rp-cookie-bar p { flex: 1 1 360px; margin: 0; font-size: 0.88rem; color: var(--rp-slate); }
.rp-cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.rp-cookie-btn { font-family: var(--rp-font-head); font-weight: 600; font-size: 0.86rem; padding: 10px 17px; border-radius: var(--rp-radius-pill); border: 1px solid var(--rp-border); background: #fff; color: var(--rp-primary); cursor: pointer; }
.rp-cookie-btn:hover { background: var(--rp-wash); }
.rp-cookie-btn.is-primary { background: var(--rp-primary); color: #fff; border-color: var(--rp-primary); }
.rp-cookie-btn.is-primary:hover { background: var(--rp-primary-bright); }
.rp-cookie-panel { display: none; padding: 6px 0 24px; border-top: 1px solid var(--rp-border-soft); }
.rp-cookie.is-expanded .rp-cookie-panel { display: block; }
.rp-cookie.is-expanded .rp-cookie-bar { border-bottom: 1px dashed var(--rp-border-soft); }
.rp-cookie-cols { display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 30px; padding-top: 22px; align-items: start; }
.rp-cookie-cols h3 { margin-bottom: 0.4em; }
.rp-cookie-cols > div:first-child p { font-size: 0.9rem; margin: 0; }
.rp-cookie-cat { border: 1px solid var(--rp-border-soft); border-radius: 14px; padding: 14px 16px; margin-bottom: 12px; }
.rp-cookie-cat-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rp-cookie-cat-top h4 { margin: 0; font-size: 0.98rem; }
.rp-cookie-state { font-size: 0.78rem; font-weight: 600; color: var(--rp-accent); font-family: var(--rp-font-head); }
.rp-cookie-detail-btn { margin-top: 10px; font-size: 0.8rem; padding: 6px 12px; }
.rp-cookie-cat p[data-cat-detail] { margin: 10px 0 0; font-size: 0.85rem; color: var(--rp-slate); }
.rp-cookie-save { display: flex; flex-direction: column; gap: 10px; min-width: 170px; }
.rp-switch { position: relative; display: inline-block; width: 46px; height: 26px; flex: none; }
.rp-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.rp-switch span { position: absolute; inset: 0; background: var(--rp-border); border-radius: var(--rp-radius-pill); transition: background 0.2s ease; }
.rp-switch span::before { content: ""; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform 0.2s ease; }
.rp-switch input:checked + span { background: var(--rp-primary); }
.rp-switch input:checked + span::before { transform: translateX(20px); }
.rp-switch input:disabled + span { background: var(--rp-accent); opacity: 0.7; }

.rp-fade { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rp-fade.is-in { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .rp-steps-nav a span.rp-chip-label { display: none; }
}

@media (max-width: 900px) {
  .rp-about-grid, .rp-mission-band { grid-template-columns: 1fr; gap: 34px; }
  .rp-mission-media { order: -1; }
  .rp-contact-row { grid-template-columns: 1fr; }
  .rp-footer-grid { grid-template-columns: 1fr 1fr; }
  .rp-footer-brand { grid-column: 1 / -1; }
  .rp-cookie-cols { grid-template-columns: 1fr; gap: 18px; }
  .rp-cookie-save { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .rp-burger { display: inline-flex; }
  .rp-steps-nav, .rp-nav-cta { display: none; }
  .rp-nav.is-open .rp-steps-nav { display: flex; flex-direction: column; align-items: stretch; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--rp-border-soft); padding: 12px 22px 8px; gap: 4px; box-shadow: var(--rp-shadow); }
  .rp-nav.is-open .rp-steps-nav a span.rp-chip-label { display: inline; }
  .rp-nav.is-open .rp-nav-cta { display: inline-flex; position: absolute; left: 22px; right: 22px; top: calc(100% + 232px); justify-content: center; }
  .rp-nav { position: relative; flex-wrap: wrap; }
  .rp-prevnext { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .rp-section { padding: 56px 0; }
  .rp-hero-inner { min-height: 480px; padding: 60px 0; }
  .rp-stepline-item { flex: 1 1 100%; }
  .rp-stepline-arrow { display: none; }
  .rp-cta-band { padding: 40px 24px; }
  .rp-footer-grid { grid-template-columns: 1fr; }
  .rp-map-frame { height: 320px; }
  .rp-cta-band, .rp-form-card, .rp-info-card { border-radius: var(--rp-radius); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .rp-fade { transition: none; opacity: 1; transform: none; }
  .rp-btn:hover, .rp-qa-card:hover, .rp-reader-card:hover, .rp-prevnext a:hover { transform: none; }
  .rp-qa-card:hover .rp-qa-thumb img { transform: none; }
}
