.rmk-board-page {
  background: #ffffff;
}

.rmk-board-page .wp-site-blocks > header,
.rmk-board-page .wp-site-blocks > footer,
.rmk-board-page .wp-block-post-title {
  display: none !important;
}

.rmk-board-page main#wp--skip-link--target > .wp-block-group > .wp-block-group.has-small-font-size,
.rmk-board-page main#wp--skip-link--target > .wp-block-group > .wp-block-template-part,
.rmk-board-page .wp-block-template-part {
  display: none !important;
}

.rmk-board-page .wp-site-blocks,
.rmk-board-page .wp-site-blocks > main,
.rmk-board-page main.wp-block-group,
.rmk-board-page .wp-block-group.alignfull,
.rmk-board-page .wp-block-group.has-global-padding,
.rmk-board-page .entry-content,
.rmk-board-page .wp-block-post-content {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

.rmk-board-page main#wp--skip-link--target,
.rmk-board-page main#wp--skip-link--target > .wp-block-group,
.rmk-board-page main#wp--skip-link--target > .wp-block-group.alignfull {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

.rmk-board-page .wp-block-group.alignfull {
  width: 100% !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.rmk-board-page .wp-site-blocks {
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
}

.rmk-board-page .wp-block-post-content > .rmk-board {
  width: 100%;
  max-width: 100% !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.rmk-board-page .wp-site-blocks > * + * {
  margin-block-start: 0 !important;
}

.rmk-board {
  --rmk-bg: #fff3f8;
  --rmk-surface: #ffffff;
  --rmk-text: #11213f;
  --rmk-muted: #62708a;
  --rmk-line: #efd8e6;
  --rmk-soft: #fff0f7;
  --rmk-primary: #1557d5;
  --rmk-primary-dark: #0e3f9f;
  --rmk-rose: #d63f7c;
  --rmk-rose-soft: #ffe3ef;
  --rmk-red: #d93d4a;
  --rmk-green: #12805f;
  --rmk-shadow: 0 18px 46px rgba(112, 45, 81, 0.12);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  min-height: 100vh;
  color: var(--rmk-text);
  background: linear-gradient(180deg, #fff0f7 0%, #fff8fb 34%, #ffffff 62%, #fff3f8 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  scroll-behavior: smooth;
}

.rmk-board * {
  box-sizing: border-box;
}

.rmk-board a:not(.rmk-button):not(.rmk-card-link) {
  color: inherit;
}

.rmk-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

#rmk-pricing,
#rmk-market,
#rmk-search,
#rmk-submit {
  scroll-margin-top: 96px;
}

.rmk-site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 252, 0.92);
  border-bottom: 1px solid rgba(239, 216, 230, 0.82);
  backdrop-filter: blur(16px);
}

.rmk-site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.rmk-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.rmk-brand-mark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(17, 33, 63, 0.08);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(21, 87, 213, 0.13);
}

.rmk-brand-mark span:nth-child(1) {
  background: #1557d5;
}

.rmk-brand-mark span:nth-child(2) {
  background: #fff;
}

.rmk-brand-mark span:nth-child(3) {
  background: #d93d4a;
}

.rmk-brand strong,
.rmk-brand small {
  display: block;
  line-height: 1.05;
}

.rmk-brand strong {
  color: #0b2e72;
  font-size: 18px;
  font-weight: 850;
}

.rmk-brand small {
  margin-top: 3px;
  color: var(--rmk-muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.rmk-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.rmk-nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #334667;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.rmk-nav-links a:hover {
  background: var(--rmk-soft);
  color: var(--rmk-primary-dark);
}

.rmk-button,
.rmk-card-link,
.rmk-submit-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 820;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.rmk-button:hover,
.rmk-card-link:hover,
.rmk-submit-form button:hover {
  transform: translateY(-1px);
}

.rmk-button-primary,
.rmk-submit-form button {
  background: var(--rmk-primary);
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(21, 87, 213, 0.22);
}

.rmk-button-primary:hover,
.rmk-submit-form button:hover {
  background: var(--rmk-primary-dark);
  color: #fff;
}

.rmk-button-secondary {
  background: #ffffff;
  border-color: rgba(21, 87, 213, 0.2);
  color: var(--rmk-primary-dark) !important;
}

.rmk-button-secondary:hover {
  border-color: rgba(21, 87, 213, 0.45);
  box-shadow: 0 12px 26px rgba(21, 87, 213, 0.1);
}

.rmk-button-lite {
  background: #fff;
  border-color: var(--rmk-line);
  color: var(--rmk-text) !important;
}

.rmk-button-lite:hover {
  border-color: rgba(21, 87, 213, 0.35);
  color: var(--rmk-primary-dark);
}

.rmk-hero {
  padding: clamp(50px, 7vw, 94px) 0 clamp(38px, 5vw, 70px);
}

.rmk-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 74px);
}

.rmk-hero-copy h1 {
  max-width: 720px;
  margin: 0 0 20px;
  color: #10245a;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 860;
  line-height: 0.98;
  letter-spacing: 0;
}

.rmk-hero-copy p {
  max-width: 660px;
  margin: 0 0 28px;
  color: #334667;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
}

.rmk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rmk-hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 34px 0 0;
}

.rmk-hero-facts div {
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(239, 216, 230, 0.95);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(112, 45, 81, 0.07);
}

.rmk-hero-facts dt {
  margin: 0 0 5px;
  color: var(--rmk-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.rmk-hero-facts dd {
  margin: 0;
  color: #102b61;
  font-size: 16px;
  font-weight: 850;
}

.rmk-hero-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(239, 216, 230, 0.95);
  border-radius: 8px;
  background: #ffe7f2;
  box-shadow: var(--rmk-shadow);
  animation: rmk-float 6s ease-in-out infinite;
}

.rmk-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.rmk-hero-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(300px, calc(100% - 36px));
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(10, 35, 80, 0.2);
  backdrop-filter: blur(14px);
}

.rmk-quick-plans {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.rmk-quick-plans a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(214, 63, 124, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #8d2857;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(112, 45, 81, 0.08);
}

.rmk-quick-plans a:hover {
  background: var(--rmk-rose-soft);
  color: #6d1741;
  transform: translateY(-1px);
}

.rmk-hero-card strong,
.rmk-hero-card span {
  display: block;
}

.rmk-hero-card strong {
  color: #0c2c67;
  font-size: 16px;
  font-weight: 860;
}

.rmk-hero-card span {
  margin-top: 6px;
  color: var(--rmk-muted);
  font-size: 13px;
  font-weight: 700;
}

.rmk-section {
  padding: clamp(48px, 7vw, 82px) 0;
}

.rmk-about-section,
.rmk-categories-section,
.rmk-how-section,
.rmk-tips-section,
.rmk-contact-section {
  background: transparent;
}

.rmk-about-grid,
.rmk-tips-grid,
.rmk-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1fr);
  align-items: start;
  gap: clamp(24px, 5vw, 54px);
}

.rmk-proof-grid,
.rmk-tip-list {
  display: grid;
  gap: 14px;
}

.rmk-proof-grid article,
.rmk-tip-list article,
.rmk-category-card,
.rmk-steps article,
.rmk-focus-card,
.rmk-contact-card,
.rmk-faq-list details {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(239, 216, 230, 0.95);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(112, 45, 81, 0.08);
}

.rmk-proof-grid article {
  padding: 20px;
}

.rmk-proof-grid strong,
.rmk-proof-grid span {
  display: block;
}

.rmk-proof-grid strong {
  color: #10245a;
  font-size: 18px;
  font-weight: 860;
}

.rmk-proof-grid span {
  margin-top: 8px;
  color: var(--rmk-muted);
  line-height: 1.55;
}

.rmk-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.rmk-category-card {
  position: relative;
  min-height: 190px;
  padding: 22px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.rmk-category-card::after {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(214, 63, 124, 0.16);
  border-radius: 24px;
  content: "";
  transform: rotate(18deg);
}

.rmk-category-card:hover {
  border-color: rgba(214, 63, 124, 0.34);
  box-shadow: 0 18px 46px rgba(112, 45, 81, 0.12);
  transform: translateY(-3px);
}

.rmk-category-card span {
  color: var(--rmk-rose);
  font-size: 13px;
  font-weight: 860;
}

.rmk-category-card h3,
.rmk-steps h3,
.rmk-tip-list h3 {
  margin: 12px 0 8px;
  color: #10245a;
  font-size: 22px;
  font-weight: 860;
  line-height: 1.15;
  letter-spacing: 0;
}

.rmk-category-card p,
.rmk-steps p,
.rmk-tip-list p,
.rmk-focus-card p,
.rmk-contact-card p,
.rmk-faq-list p {
  margin: 0;
  color: var(--rmk-muted);
  line-height: 1.58;
}

.rmk-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.rmk-steps article {
  padding: 22px;
}

.rmk-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--rmk-rose-soft);
  color: #8d2857;
  font-size: 13px;
  font-weight: 880;
}

.rmk-focus-section {
  background: linear-gradient(180deg, #ffffff 0%, #fff4f9 100%);
  border-top: 1px solid rgba(239, 216, 230, 0.86);
  border-bottom: 1px solid rgba(239, 216, 230, 0.86);
}

.rmk-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.rmk-focus-card {
  position: relative;
  min-height: 310px;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
}

.rmk-focus-card::before {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(21, 87, 213, 0.14);
  border-radius: 8px;
  content: "";
  transform: rotate(10deg);
}

.rmk-focus-card > span {
  color: var(--rmk-rose);
  font-size: 13px;
  font-weight: 870;
  text-transform: uppercase;
}

.rmk-focus-card h2 {
  max-width: 520px;
  margin: 14px 0 12px;
  color: #10245a;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

.rmk-focus-card .rmk-button {
  margin-top: 24px;
}

.rmk-tip-list article {
  padding: 20px;
}

.rmk-contact-card {
  padding: 24px;
}

.rmk-contact-card h3 {
  margin: 0 0 10px;
  color: #10245a;
  font-size: 24px;
  line-height: 1.12;
}

.rmk-contact-card dl {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.rmk-contact-card dt {
  color: var(--rmk-muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.rmk-contact-card dd {
  margin: 4px 0 0;
  color: var(--rmk-text);
  font-weight: 820;
}

.rmk-contact-card a {
  text-decoration: none;
}

.rmk-contact-card .rmk-telegram-button {
  width: 100%;
  margin: 2px 0 18px;
}

.rmk-faq-list {
  display: grid;
  gap: 10px;
}

.rmk-faq-list details {
  padding: 16px 18px;
}

.rmk-faq-list summary {
  color: #10245a;
  cursor: pointer;
  font-weight: 850;
}

.rmk-faq-list p {
  margin-top: 10px;
}

.rmk-legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rmk-legal-list a {
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff4f9;
  color: #7f3959;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.rmk-legal-list a:hover {
  background: #ffe3ef;
  color: #5f1638;
}

.rmk-section-head {
  max-width: 740px;
  margin: 0 0 24px;
}

.rmk-section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 24px;
}

.rmk-section-head h2 {
  margin: 0 0 9px;
  color: #0c2c67;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 860;
  line-height: 1.08;
  letter-spacing: 0;
}

.rmk-section-head p {
  margin: 0;
  color: var(--rmk-muted);
  font-size: 16px;
  line-height: 1.55;
}

.rmk-link-arrow {
  flex: 0 0 auto;
  color: var(--rmk-primary-dark);
  font-weight: 820;
  text-decoration: none;
}

.rmk-pricing-section {
  background: #fff;
  border-top: 1px solid rgba(239, 216, 230, 0.86);
  border-bottom: 1px solid rgba(239, 216, 230, 0.86);
}

.rmk-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.rmk-plan {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(239, 216, 230, 0.98);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 45, 96, 0.07);
}

.rmk-plan-business {
  border-color: rgba(21, 87, 213, 0.35);
  box-shadow: 0 18px 46px rgba(21, 87, 213, 0.12);
}

.rmk-plan-vip {
  border-color: rgba(214, 63, 124, 0.38);
  background: linear-gradient(180deg, #ffffff 0%, #fff4f9 100%);
}

.rmk-plan h3 {
  margin: 0 0 12px;
  color: #0c2c67;
  font-size: 23px;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0;
}

.rmk-plan strong {
  display: block;
  color: var(--rmk-text);
  font-size: 34px;
  font-weight: 860;
  line-height: 1.06;
}

.rmk-plan span {
  display: block;
  margin-top: 6px;
  color: var(--rmk-muted);
  font-size: 14px;
  line-height: 1.4;
}

.rmk-plan ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #394a66;
  list-style: none;
}

.rmk-plan li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
}

.rmk-plan li::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--rmk-green);
  border-bottom: 2px solid var(--rmk-green);
  content: "";
  transform: rotate(42deg);
}

.rmk-plan .rmk-button {
  margin-top: auto;
}

.rmk-market-section {
  background: linear-gradient(180deg, #fff4f9 0%, #fff8fb 100%);
}

.rmk-market-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  align-items: start;
  gap: 26px;
}

.rmk-catalog-panel,
.rmk-submit-panel {
  background: #fff;
  border: 1px solid rgba(239, 216, 230, 0.95);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(16, 45, 96, 0.08);
}

.rmk-catalog-panel {
  padding: clamp(20px, 3vw, 30px);
}

.rmk-submit-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.rmk-submit-head {
  margin-bottom: 18px;
}

.rmk-submit-head h2 {
  font-size: 27px;
}

.rmk-category-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.rmk-category-rail button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--rmk-line);
  border-radius: 8px;
  background: #fff;
  color: #344667;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 820;
}

.rmk-category-rail button:hover,
.rmk-category-rail button.is-active {
  background: var(--rmk-soft);
  border-color: rgba(21, 87, 213, 0.32);
  color: var(--rmk-primary-dark);
}

.rmk-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  margin-bottom: 10px;
  padding: 14px;
  background: #fff8fb;
  border: 1px solid var(--rmk-line);
  border-radius: 8px;
}

.rmk-filters button {
  align-self: end;
}

.rmk-field,
.rmk-filters label {
  display: grid;
  gap: 7px;
}

.rmk-field span,
.rmk-filters span,
.rmk-plan-choice legend {
  color: #344667;
  font-size: 13px;
  font-weight: 830;
}

.rmk-field input,
.rmk-field textarea,
.rmk-field select,
.rmk-filters input,
.rmk-filters select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--rmk-line);
  border-radius: 8px;
  background: #fff;
  color: var(--rmk-text);
  font: inherit;
  font-size: 15px;
  line-height: 1.3;
  outline: none;
}

.rmk-field input:focus,
.rmk-field textarea:focus,
.rmk-field select:focus,
.rmk-filters input:focus,
.rmk-filters select:focus {
  border-color: rgba(21, 87, 213, 0.62);
  box-shadow: 0 0 0 3px rgba(21, 87, 213, 0.1);
}

.rmk-field input[type="file"] {
  min-height: 48px;
  padding: 8px;
  color: var(--rmk-muted);
  font-size: 14px;
}

.rmk-field input[type="file"]::file-selector-button {
  min-height: 32px;
  margin-right: 10px;
  padding: 6px 11px;
  border: 1px solid rgba(21, 87, 213, 0.22);
  border-radius: 8px;
  background: var(--rmk-soft);
  color: var(--rmk-primary-dark);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 820;
}

.rmk-field textarea {
  resize: vertical;
}

.rmk-field small {
  color: var(--rmk-muted);
  font-size: 13px;
}

.rmk-results-line {
  min-height: 22px;
  margin-bottom: 14px;
  color: var(--rmk-muted);
  font-size: 13px;
  font-weight: 750;
}

.rmk-listings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rmk-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fff9fc 100%);
  border: 1px solid rgba(239, 216, 230, 0.95);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 45, 96, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rmk-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rmk-primary), #ffffff, var(--rmk-red));
  content: "";
}

.rmk-card:hover {
  border-color: rgba(21, 87, 213, 0.28);
  box-shadow: 0 20px 46px rgba(112, 45, 81, 0.14);
  transform: translateY(-3px);
}

.rmk-card[hidden] {
  display: none;
}

.rmk-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.rmk-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.rmk-card-top,
.rmk-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.rmk-card-top {
  justify-content: space-between;
  color: var(--rmk-muted);
  font-size: 13px;
  font-weight: 830;
}

.rmk-state {
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--rmk-soft);
  color: var(--rmk-primary-dark);
}

.rmk-state-paid {
  background: #e6f7ef;
  color: var(--rmk-green);
}

.rmk-card h3 {
  margin: 14px 0 9px;
  color: var(--rmk-text);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.22;
  letter-spacing: 0;
}

.rmk-card h3 a {
  text-decoration: none;
}

.rmk-card h3 a:hover {
  color: var(--rmk-primary-dark);
}

.rmk-card p {
  margin: 0 0 18px;
  color: var(--rmk-muted);
  font-size: 14px;
  line-height: 1.55;
}

.rmk-card-meta {
  margin-top: auto;
}

.rmk-card-meta span {
  padding: 6px 9px;
  background: #f4f8fe;
  border-radius: 8px;
  color: #435471;
  font-size: 12px;
  font-weight: 760;
}

.rmk-card-link {
  margin-top: 16px;
  background: #f8fbff;
  border-color: var(--rmk-line);
  color: var(--rmk-primary-dark) !important;
}

.rmk-empty {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #fff7fb);
  border: 1px dashed #e7bdd3;
  border-radius: 8px;
}

.rmk-empty[hidden] {
  display: none;
}

.rmk-empty strong {
  color: #0c2c67;
  font-size: 19px;
  font-weight: 860;
}

.rmk-empty span {
  max-width: 390px;
  color: var(--rmk-muted);
}

.rmk-empty .rmk-button {
  margin-top: 8px;
}

.rmk-submit-form {
  display: grid;
  gap: 16px;
}

.rmk-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rmk-field-wide {
  grid-column: 1 / -1;
}

.rmk-plan-choice {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}

.rmk-plan-choice legend {
  margin-bottom: 2px;
  padding: 0;
}

.rmk-plan-choice label {
  display: block;
  cursor: pointer;
}

.rmk-plan-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rmk-plan-choice span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 12px 13px;
  border: 1px solid var(--rmk-line);
  border-radius: 8px;
  background: #fff;
}

.rmk-plan-choice strong {
  color: var(--rmk-text);
  font-size: 15px;
}

.rmk-plan-choice small {
  color: var(--rmk-muted);
  font-size: 13px;
  font-weight: 760;
}

.rmk-plan-choice input:checked + span {
  border-color: rgba(21, 87, 213, 0.58);
  background: var(--rmk-soft);
  box-shadow: 0 0 0 3px rgba(21, 87, 213, 0.08);
}

.rmk-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #334667;
  font-size: 13px;
  line-height: 1.5;
}

.rmk-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--rmk-primary);
}

.rmk-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.rmk-submit-button {
  width: 100%;
}

.rmk-alert {
  display: grid;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 760;
}

.rmk-alert-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rmk-alert-actions .rmk-button {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 14px;
}

.rmk-alert-success {
  background: #e7f7ef;
  color: var(--rmk-green);
}

.rmk-alert-error {
  background: #fff0f2;
  color: #b52d3c;
}

.rmk-payment-open {
  overflow: hidden;
}

.rmk-payment-dialog {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(11, 25, 61, 0.46);
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity 0.2s ease;
}

.rmk-payment-dialog.is-open {
  opacity: 1;
}

.rmk-payment-dialog[hidden] {
  display: none !important;
}

.rmk-payment-dialog-card {
  position: relative;
  width: min(100%, 520px);
  padding: clamp(22px, 4vw, 30px);
  background:
    radial-gradient(circle at 94% 4%, rgba(214, 63, 124, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fff7fb 100%);
  border: 1px solid rgba(239, 216, 230, 0.98);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(16, 36, 90, 0.25);
}

.rmk-payment-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--rmk-line);
  border-radius: 8px;
  background: #fff;
  color: var(--rmk-text);
  cursor: pointer;
  font: inherit;
  font-size: 22px;
  line-height: 1;
}

.rmk-payment-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  background: var(--rmk-rose-soft);
  border-radius: 8px;
  color: var(--rmk-primary-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.rmk-payment-dialog h2 {
  margin: 0;
  color: #0c2c67;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.12;
}

.rmk-payment-dialog p {
  margin: 12px 0 18px;
  color: var(--rmk-muted);
  font-size: 16px;
  line-height: 1.55;
}

.rmk-payment-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--rmk-line);
  border-radius: 8px;
  color: #33435f;
  font-weight: 720;
  line-height: 1.45;
}

.rmk-payment-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--rmk-primary);
}

.rmk-payment-consent a {
  color: var(--rmk-primary-dark);
  font-weight: 850;
}

.rmk-payment-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
}

.rmk-payment-dialog-actions .rmk-button {
  min-height: 46px;
}

.rmk-payment-dialog-actions .rmk-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.rmk-footer {
  padding: 26px 0;
  background: #10245a;
  color: #d9e6fb;
}

.rmk-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
  font-weight: 760;
}

.rmk-footer a {
  color: #fff;
  text-decoration: none;
}

.rmk-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.rmk-inner-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 14%, rgba(214, 63, 124, 0.12), transparent 32%),
    radial-gradient(circle at 8% 26%, rgba(21, 87, 213, 0.09), transparent 30%),
    linear-gradient(180deg, #fff0f7 0%, #fff8fb 42%, #ffffff 72%, #fff3f8 100%);
}

.rmk-single-wrap,
.rmk-static-wrap {
  min-height: calc(100vh - 74px);
}

.rmk-single-hero,
.rmk-static-hero {
  padding: clamp(42px, 6vw, 74px) 0 clamp(24px, 4vw, 46px);
}

.rmk-single-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  align-items: stretch;
  gap: clamp(22px, 4vw, 42px);
}

.rmk-back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: #0e3f9f;
  font-size: 14px;
  font-weight: 820;
  text-decoration: none;
}

.rmk-back-link:hover {
  color: var(--rmk-rose);
}

.rmk-single-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.rmk-single-kicker > span:first-child {
  padding: 7px 10px;
  border: 1px solid rgba(21, 87, 213, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #0e3f9f;
  font-size: 13px;
  font-weight: 850;
}

.rmk-single-copy h1,
.rmk-static-hero h1 {
  max-width: 840px;
  margin: 0;
  color: #10245a;
  font-size: clamp(42px, 5.8vw, 72px);
  font-weight: 860;
  line-height: 1;
  letter-spacing: 0;
}

.rmk-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.rmk-single-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  border-radius: 8px;
  background: #fff;
  color: #435471;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(112, 45, 81, 0.07);
}

.rmk-single-contact-card,
.rmk-info-panel,
.rmk-static-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(239, 216, 230, 0.96);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(112, 45, 81, 0.11);
  backdrop-filter: blur(14px);
}

.rmk-single-contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.rmk-single-contact-card strong,
.rmk-info-panel h3 {
  margin: 0;
  color: #10245a;
  font-size: 23px;
  font-weight: 860;
  line-height: 1.14;
}

.rmk-single-contact-card p,
.rmk-info-panel p,
.rmk-static-hero p {
  margin: 10px 0 0;
  color: var(--rmk-muted);
  line-height: 1.58;
}

.rmk-single-contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.rmk-single-content-section,
.rmk-static-content-section {
  padding: 0 0 clamp(52px, 7vw, 86px);
}

.rmk-single-content-grid,
.rmk-static-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  align-items: start;
  gap: 24px;
}

.rmk-single-description {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(239, 216, 230, 0.96);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(16, 45, 96, 0.09);
}

.rmk-single-image {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.rmk-single-placeholder {
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: 36px;
  text-align: center;
  background:
    linear-gradient(115deg, rgba(21, 87, 213, 0.9), rgba(255, 255, 255, 0.7) 48%, rgba(217, 61, 74, 0.88)),
    #fff0f7;
}

.rmk-single-placeholder strong,
.rmk-single-placeholder span {
  display: block;
  color: #fff;
  text-shadow: 0 10px 28px rgba(16, 45, 96, 0.24);
}

.rmk-single-placeholder strong {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 880;
  line-height: 1;
}

.rmk-single-placeholder span {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 820;
}

.rmk-single-description h2,
.rmk-static-card h2 {
  margin: 0 0 14px;
  color: #10245a;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 860;
  line-height: 1.08;
  letter-spacing: 0;
}

.rmk-single-description h2,
.rmk-single-text,
.rmk-static-card {
  padding: clamp(22px, 4vw, 34px);
}

.rmk-single-description h2 {
  padding-bottom: 0;
}

.rmk-single-text {
  padding-top: 0;
  color: #334667;
  font-size: 18px;
  line-height: 1.72;
}

.rmk-single-text > *:first-child,
.rmk-static-card > *:first-child {
  margin-top: 0;
}

.rmk-single-text > *:last-child,
.rmk-static-card > *:last-child {
  margin-bottom: 0;
}

.rmk-single-side,
.rmk-static-side {
  display: grid;
  gap: 16px;
}

.rmk-info-panel {
  padding: 22px;
}

.rmk-info-panel dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.rmk-info-panel dt {
  color: var(--rmk-muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.rmk-info-panel dd {
  margin: 4px 0 0;
  color: var(--rmk-text);
  font-weight: 820;
  line-height: 1.35;
}

.rmk-info-panel-soft {
  background: linear-gradient(180deg, #ffffff 0%, #fff1f7 100%);
}

.rmk-info-panel .rmk-button {
  width: 100%;
  margin-top: 18px;
}

.rmk-static-hero {
  text-align: left;
}

.rmk-static-hero p {
  max-width: 680px;
  font-size: 18px;
}

.rmk-static-card {
  color: #334667;
  font-size: 17px;
  line-height: 1.72;
}

.rmk-static-card p {
  margin: 0 0 16px;
}

.rmk-static-card a {
  color: var(--rmk-primary-dark);
  font-weight: 760;
}

.rmk-static-card strong {
  color: #10245a;
  font-weight: 850;
}

.rmk-legal-list-column {
  display: grid;
  gap: 8px;
}

.rmk-legal-list-column a {
  display: block;
}

.rmk-board.is-motion-ready .rmk-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.rmk-board.is-motion-ready .rmk-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@keyframes rmk-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1040px) {
  .rmk-hero-grid,
  .rmk-market-layout,
  .rmk-about-grid,
  .rmk-tips-grid,
  .rmk-contact-grid,
  .rmk-single-hero-grid,
  .rmk-single-content-grid,
  .rmk-static-grid {
    grid-template-columns: 1fr;
  }

  .rmk-submit-panel {
    position: static;
  }

  .rmk-hero-media,
  .rmk-hero-media img {
    min-height: 360px;
  }

  .rmk-steps,
  .rmk-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rmk-hero-facts,
  .rmk-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .rmk-site-nav-inner {
    min-height: 66px;
  }

  .rmk-nav-links {
    display: none;
  }

  .rmk-pricing-grid,
  .rmk-filters,
  .rmk-form-grid,
  .rmk-hero-facts,
  .rmk-focus-grid,
  .rmk-steps,
  .rmk-category-grid {
    grid-template-columns: 1fr;
  }

  .rmk-listings {
    grid-template-columns: 1fr;
  }

  .rmk-section-head-row {
    display: block;
  }

  .rmk-link-arrow {
    display: inline-flex;
    margin-top: 12px;
  }

  .rmk-focus-card {
    min-height: auto;
  }

  .rmk-single-copy h1,
  .rmk-static-hero h1 {
    font-size: 42px;
  }

  .rmk-single-contact-card {
    padding: 20px;
  }
}

@media (max-width: 620px) {
  .rmk-container {
    width: min(100% - 24px, 1180px);
  }

  .rmk-nav-cta {
    display: none;
  }

  .rmk-hero {
    padding-top: 34px;
  }

  .rmk-hero-copy h1 {
    font-size: 38px;
  }

  .rmk-hero-copy p {
    font-size: 16px;
  }

  .rmk-hero-actions .rmk-button,
  .rmk-card-link {
    width: 100%;
  }

  .rmk-quick-plans a {
    flex: 1 1 100%;
  }

  .rmk-catalog-panel,
  .rmk-submit-panel {
    padding: 18px;
  }

  .rmk-plan {
    padding: 20px;
  }

  .rmk-single-copy h1,
  .rmk-static-hero h1 {
    font-size: 34px;
  }

  .rmk-single-meta span {
    width: 100%;
  }

  .rmk-single-description h2,
  .rmk-single-text,
  .rmk-static-card {
    padding: 20px;
  }

  .rmk-single-description h2 {
    padding-bottom: 0;
  }

  .rmk-single-text {
    padding-top: 0;
    font-size: 16px;
  }

  .rmk-single-placeholder {
    min-height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rmk-board *,
  .rmk-board *::before,
  .rmk-board *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .rmk-board.is-motion-ready .rmk-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
