/* ============================================================
   rmp-bootcamp-section.css
   NEW section CSS — drop into public/css/
   Relies on global CSS variables from eduhubspot-staging.webflow.css?v=APP_VERSION
   ============================================================ */

/* ── Section wrapper ─────────────────────────────────────── */
.rmp-bootcamp-section {
  background: linear-gradient(160deg, #f0f6ff 0%, #fafafa 60%, #fff 100%);
  position: relative;
  overflow: hidden;
}

/* subtle decorative background dots */
.rmp-bootcamp-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--_primitives---blue--20) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.45;
  pointer-events: none;
}

/* ── Section header spacing ──────────────────────────────── */
.rmp-section-header {
  margin-bottom: 3rem;
  flex-direction: column;
  gap: 0.75rem;
}

.rmp-section-subtitle {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--_primitives---neutrals--dark-grey);
  font-family: var(--_typography---font-styles--body);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ── Cards grid ──────────────────────────────────────────── */
.rmp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ── Individual card ─────────────────────────────────────── */
.rmp-card {
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(66, 141, 255, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1.5px solid #e8f0fe;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.rmp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--_primitives---blue--70), var(--_primitives---blue--40));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.rmp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(66, 141, 255, 0.14), 0 2px 8px rgba(0, 0, 0, 0.06);
  border-color: var(--_primitives---blue--40);
}

.rmp-card:hover::before {
  opacity: 1;
}

/* ── Featured card variant ───────────────────────────────── */
.rmp-card--featured {
  background: linear-gradient(145deg, var(--_primitives---blue--70) 0%, #2a6dd9 100%);
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(66, 141, 255, 0.32);
  color: #ffffff;
}

.rmp-card--featured::before {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.rmp-card--featured:hover {
  box-shadow: 0 16px 40px rgba(66, 141, 255, 0.42);
  border-color: transparent;
}

/* ── Card inner padding ──────────────────────────────────── */
.rmp-card-inner {
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}

/* ── Badge ───────────────────────────────────────────────── */
.rmp-card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--_primitives---blue--70);
  background: var(--_primitives---blue--10);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.6rem;
  width: fit-content;
  font-family: var(--_typography---font-styles--body);
}

.rmp-card-badge--light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

/* ── Card day heading ────────────────────────────────────── */
.rmp-card-days {
  font-family: var(--_typography---font-styles--heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--_primitives---neutrals--light-black);
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.rmp-card--featured .rmp-card-days {
  color: #ffffff;
}

/* ── Meta info (date + time) ─────────────────────────────── */
.rmp-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.rmp-meta-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--_primitives---neutrals--dark-grey);
  font-family: var(--_typography---font-styles--body);
  line-height: 1.4;
}

.rmp-card--featured .rmp-meta-item {
  color: rgba(255, 255, 255, 0.85);
}

.rmp-meta-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--_primitives---blue--70);
}

.rmp-card--featured .rmp-meta-icon {
  color: rgba(255, 255, 255, 0.8);
}

/* ── Divider ─────────────────────────────────────────────── */
.rmp-divider {
  height: 1px;
  background: var(--_primitives---neutrals--light-grey);
  margin-bottom: 0.9rem;
}

.rmp-divider--light {
  background: rgba(255, 255, 255, 0.2);
}

/* ── Instructor label ────────────────────────────────────── */
.rmp-card-instructor-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--_primitives---neutrals--grey-2);
  font-family: var(--_typography---font-styles--body);
  margin-bottom: 0.55rem;
  font-weight: 600;
}

.rmp-card--featured .rmp-card-instructor-label {
  color: rgba(255, 255, 255, 0.65);
}

/* ── Instructor row ──────────────────────────────────────── */
.rmp-instructor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.rmp-instructor-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--_primitives---blue--20);
  background: var(--_primitives---neutrals--light-grey);
  flex-shrink: 0;
}

.rmp-card--featured .rmp-instructor-img {
  border-color: rgba(255, 255, 255, 0.4);
}

.rmp-instructor-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--_primitives---neutrals--light-black);
  font-family: var(--_typography---font-styles--body);
  line-height: 1.3;
}

.rmp-card--featured .rmp-instructor-name {
  color: #ffffff;
}

.rmp-instructor-creds {
  font-size: 0.68rem;
  color: var(--_primitives---neutrals--grey-2);
  font-family: var(--_typography---font-styles--body);
  line-height: 1.4;
  margin-top: 0.15rem;
}

.rmp-card--featured .rmp-instructor-creds {
  color: rgba(255, 255, 255, 0.7);
}

/* ── CTA button ──────────────────────────────────────────── */
.rmp-cta-btn {
  display: block;
  text-align: center;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--_typography---font-styles--body);
  letter-spacing: 0.03em;
  text-decoration: none;
  background: linear-gradient(90deg, var(--_primitives---blue--70) 0%, var(--_primitives---blue--100) 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
  box-shadow: 0 3px 10px rgba(66, 141, 255, 0.25);
  margin-bottom: 0.85rem;
}

.rmp-cta-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(66, 141, 255, 0.35);
}

.rmp-cta-btn--light {
  background: #ffffff;
  color: var(--_primitives---blue--70);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.rmp-cta-btn--light:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* ── Starts in footer ────────────────────────────────────── */
.rmp-starts-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.73rem;
  color: var(--_primitives---neutrals--grey-2);
  font-family: var(--_typography---font-styles--body);
}

.rmp-card--featured .rmp-starts-in {
  color: rgba(255, 255, 255, 0.65);
}

.rmp-clock-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .rmp-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .rmp-cards-grid {
    grid-template-columns: 1fr;
  }

  .rmp-card-inner {
    padding: 1.4rem 1.2rem 1.2rem;
  }

  .rmp-section-header {
    margin-bottom: 2rem;
  }
}


.rmp-wrap {
  padding: 2.5rem 1.25rem;
  background: #f0f4f8;
  border-radius: 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.card {
  border-radius: 18px;
  padding: 1.4rem 1.1rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.65rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s;
  cursor: pointer;
}
.card:hover { transform: translateY(-6px); }

/* Card 1 — deep teal */
.c1 { background: #00897B; box-shadow: 0 6px 22px rgba(0,137,123,0.35); }
/* Card 2 — indigo */
.c2 { background: #3949AB; box-shadow: 0 6px 22px rgba(57,73,171,0.35); }
/* Card 3 — amber/orange */
.c3 { background: #F57C00; box-shadow: 0 6px 22px rgba(245,124,0,0.35); }
/* Card 4 — rose/pink */
.c4 { background: #D81B60; box-shadow: 0 6px 22px rgba(216,27,96,0.35); }
/* Card 5 — deep purple */
.c5 { background: #6A1B9A; box-shadow: 0 6px 22px rgba(106,27,154,0.35); }

.card::after {
  content: "";
  position: absolute; bottom: -40px; right: -40px;
  width: 110px; height: 110px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}

.card-num {
  font-size: 52px;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  position: absolute;
  top: 0.6rem; right: 0.85rem;
  font-family: var(--font-sans);
  pointer-events: none;
}

.card-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0.25rem 0.65rem;
  width: fit-content;
  margin-bottom: 0.1rem;
}

.card-num-pill {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 15px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.card-title {
  font-size: 14px; font-weight: 500;
  color: #fff;
  line-height: 1.35;
  z-index: 1;
}

.card-badge {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 12px; font-weight: 500;
  border-radius: 8px;
  padding: 0.3rem 0.6rem;
  width: fit-content;
  border: 1px solid rgba(255,255,255,0.35);
}

.card-divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.card-desc {
  font-size: 11.5px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  flex: 1;
}

@media (max-width: 700px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .c5 { grid-column: 1 / -1; }
}
@media (max-width: 420px) {
  .cards { grid-template-columns: 1fr; }
  .c5 { grid-column: auto; }
}


/* ============================================================
   rmp-exam-domains.css
   Save to: public/css/rmp-exam-domains.css
   Depends on: eduhubspot-staging.webflow.css?v=APP_VERSION (for CSS vars)
   ============================================================ */

/* ── Section background ──────────────────────────────────── */
.rmp-domains-section {
  background: #f0f4f8;
  position: relative;
}

/* ── Header spacing ──────────────────────────────────────── */
.rmp-domains-header {
  flex-direction: column;
  margin-bottom: 2.75rem;
}

/* ── Grid ────────────────────────────────────────────────── */
.rmp-domains-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

/* ── Card base ───────────────────────────────────────────── */
.rmp-domain-card {
  border-radius: 18px;
  padding: 1.5rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.rmp-domain-card:hover {
  transform: translateY(-6px);
}

/* decorative circle bubble */
.rmp-domain-card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

/* ── Color variants ──────────────────────────────────────── */
.rmp-d1 {
  background: #00897B;
  box-shadow: 0 6px 22px rgba(0, 137, 123, 0.35);
}
.rmp-d2 {
  background: #3949AB;
  box-shadow: 0 6px 22px rgba(57, 73, 171, 0.35);
}
.rmp-d3 {
  background: #F57C00;
  box-shadow: 0 6px 22px rgba(245, 124, 0, 0.35);
}
.rmp-d4 {
  background: #D81B60;
  box-shadow: 0 6px 22px rgba(216, 27, 96, 0.35);
}
.rmp-d5 {
  background: #6A1B9A;
  box-shadow: 0 6px 22px rgba(106, 27, 154, 0.35);
}

.rmp-d1:hover { box-shadow: 0 14px 36px rgba(0, 137, 123, 0.45); }
.rmp-d2:hover { box-shadow: 0 14px 36px rgba(57, 73, 171, 0.45); }
.rmp-d3:hover { box-shadow: 0 14px 36px rgba(245, 124, 0, 0.45); }
.rmp-d4:hover { box-shadow: 0 14px 36px rgba(216, 27, 96, 0.45); }
.rmp-d5:hover { box-shadow: 0 14px 36px rgba(106, 27, 154, 0.45); }

/* ── Ghost number watermark ──────────────────────────────── */
.rmp-dc-ghost-num {
  font-size: 72px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  right: 0.85rem;
  pointer-events: none;
  font-family: var(--_typography---font-styles--body);
}

/* ── Top row: pill + chip ────────────────────────────────── */
.rmp-dc-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rmp-dc-pill {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--_typography---font-styles--body);
}

.rmp-dc-chip {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0.25rem 0.7rem;
  font-family: var(--_typography---font-styles--body);
}

/* ── Title ───────────────────────────────────────────────── */
.rmp-dc-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  font-family: var(--_typography---font-styles--heading);
  position: relative;
  z-index: 1;
}

/* ── Percentage badge ────────────────────────────────────── */
.rmp-dc-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.32rem 0.75rem;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-family: var(--_typography---font-styles--body);
}

/* ── Divider ─────────────────────────────────────────────── */
.rmp-dc-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

/* ── Description ─────────────────────────────────────────── */
.rmp-dc-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  flex: 1;
  font-family: var(--_typography---font-styles--body);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .rmp-domains-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .rmp-domains-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .rmp-domains-grid {
    grid-template-columns: 1fr;
  }
}




/* ══════════════════════════════════════════════════════════
   RMP REGISTER POPUP CSS
   Replace the existing popup section in rmp-sita-aero.css
   with this block (from "OVERLAY" comment onward)
   ══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════
   RMP REGISTER POPUP FINAL CSS (FIXED VERSION)
   ══════════════════════════════════════════════════════════ */

/* ── Overlay ─────────────────────────────────────────────── */
/* ══════════════════════════════════════════════════════════
   RMP POPUP FINAL CSS (ALL ISSUES FIXED)
   ══════════════════════════════════════════════════════════ */

/* ── Overlay ───────────────── */
/* ══════════════════════════════════════════════════════════
   RMP POPUP FINAL CSS (ULTIMATE CLEAN VERSION)
   ══════════════════════════════════════════════════════════ */

/* ── Overlay ───────────────── */
.rmp-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 16px;
  z-index: 9999;
  overflow-y: auto;
}

/* ── Box ───────────────── */
.rmp-popup-box {
  width: 100%;
  max-width: 500px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden; /* 🔥 important */
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: popupIn 0.25s ease;
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── Header ───────────────── */
.rmp-popup-header {
  background: linear-gradient(135deg, #1e4d8c, #2e87b0);
  padding: 28px 24px 22px;
  text-align: center;
  color: #fff;
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.rmp-popup-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.rmp-popup-subtitle {
  font-size: 13.5px;
  opacity: 0.9;
}

/* CLOSE BUTTON */
.rmp-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
}

.rmp-popup-close svg {
  width: 16px;
  height: 16px;
}

/* ── Form ───────────────── */
.rmp-popup-form {
  padding: 20px;
}

/* ── Field ───────────────── */
.rmp-field-wrap {
  margin-bottom: 14px;
}

.rmp-field-label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* ── Input Group ───────────────── */
.rmp-field-group {
  display: flex;
  align-items: center;
  height: 44px;
  background: #f7f9fc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
}

/* ICON */
.rmp-field-icon {
  width: 42px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
}

/* INPUT */
.rmp-field-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 10px;
  font-size: 14px;
  outline: none;
  height: 100%;
}

/* ── PHONE FIELD ───────────────── */
.rmp-phone-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rmp-phone-select {
  width: 85px !important;
  min-width: 85px;
  border: none !important;
  background: transparent !important;
  font-size: 13px;
}

.rmp-phone-divider {
  width: 1px;
  height: 20px;
  background: #ddd;
}

.rmp-phone-input {
  flex: 1;
  padding-left: 6px !important;
}

/* ── SELECT2 FIX ───────────────── */
.select2-container--open {
  z-index: 99999 !important;
}

.rmp-phone-group .select2-container {
  width: auto !important;
}

.rmp-phone-group .select2-selection {
  border: none !important;
  background: transparent !important;
  height: 44px !important;
  display: flex !important;
  align-items: center;
  padding: 0 6px !important;
  font-size: 13px !important;
}

/* FLAG FIX */
.select2-container .flag,
.select2-container .select2-selection__rendered img {
  width: 16px !important;
  height: 11px !important;
  display: inline-block !important;
  vertical-align: middle;
  margin-right: 6px;
}

/* ALIGN TEXT */
.select2-container .select2-selection__rendered {
  display: flex !important;
  align-items: center;
  gap: 6px;
  height: 100%;
}

/* ARROW FIX */
.select2-container .select2-selection__arrow {
  height: 100% !important;
  top: 0 !important;
  right: 4px !important;
  display: flex;
  align-items: center;
}

/* DROPDOWN */
.select2-dropdown {
  border-radius: 8px !important;
  font-size: 13px;
  min-width: 200px !important;
  max-width: 260px;
}

.select2-results__option {
  display: flex !important;
  align-items: center !important;
  gap: 8px;
}

.select2-results__option img,
.select2-results__option .flag {
  width: 18px !important;
  height: 12px !important;
  object-fit: cover;
}

/* ── PASSWORD STACK ───────────────── */
.rmp-field-row {
  display: block;
}

/* ── ERROR ───────────────── */
.rmp-error-msg {
  font-size: 12px;
  color: red;
  margin-top: 3px;
}

/* =========================
   HEADER RESPONSIVE FIX
========================= */

/* NAVBAR LOGO FIX */
.navbar-cotainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* LOGO SIZE CONTROL */
.navbar2_logo {
  max-width: 180px;
  height: auto;
}

/* =========================
   MOBILE (TABLET + BELOW)
========================= */
@media (max-width: 768px) {

  /* STACK LOGOS */
  .navbar-cotainer {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .navbar2_logo {
    max-width: 140px;
  }

  /* SECTION HEADER */
  .rmp-section-header {
    text-align: center;
    padding: 0 10px;
  }

  /* TITLE */
  .heading-style-h2 {
    font-size: 22px !important;
    line-height: 1.3;
  }

  /* INLINE FIX (BREAK LINE PROPERLY) */
  .inline {
    display: block;
  }

  .is-inline {
    display: block;
  }

  /* VECTOR UNDERLINE FIX */
  .vector {
    display: none; /* hide underline image (breaks layout on mobile) */
  }

  /* SUBTITLE */
  .rmp-section-subtitle {
    font-size: 13px;
    padding: 0 10px;
  }
}
/* ── BUTTON ───────────────── */
.rmp-btn-submit {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #1e4d8c, #2e87b0);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.rmp-btn-submit:disabled {
  background: #ccc;
}

/* ── MESSAGE ───────────────── */
.form-message {
  text-align: center;
  margin-top: 10px;
}

.form-message.success { color: green; }
.form-message.error { color: red; }

/* =========================
   FOOTER LINK COLOR FIX
   (Webflow footer uses dark link defaults)
========================= */
.footer11_component .footer11_menu-address a.text-size-small,
.footer11_component .footer11_menu-address a.text-size-small:visited {
  color: #ffffff;
}

.footer11_component .footer11_menu-address a.text-size-small:hover,
.footer11_component .footer11_menu-address a.text-size-small:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}