:root {
  --accent: #2563EB;
  --accent-light: #3B82F6;
  --accent-dark: #1D4ED8;
  --accent-subtle: rgba(37, 99, 235, .06);
  --accent-glow: rgba(37, 99, 235, .10);
  --text: #111827;
  --text-secondary: #4B5563;
  --text-tertiary: #6B7280;
  --bg: #FAFBFC;
  --white: #FFFFFF;
  --border: rgba(0, 0, 0, .06);
  --border-hover: rgba(37, 99, 235, .18);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.03);
  --shadow-md: 0 4px 16px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 8px;
}

* { box-sizing: border-box; }

body.mny-page {
  margin: 0;
  color: var(--text);
  font-family: "Inter", "Work Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.mny-container {
  max-width: 1140px;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── Hero ── */
.mny-hero {
  padding: 40px 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.mny-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.mny-kicker {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--accent);
  text-transform: uppercase;
}

.mny-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.mny-hero-title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
}

.mny-hero-description {
  margin: 10px 0 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

.mny-breadcrumb {
  margin: 16px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
}

/* ── Cards ── */
.mny-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.mny-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.mny-form-card,
.mny-info-card,
.mny-map-card {
  padding: 32px 36px;
}

.mny-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
}

.mny-card-subtitle {
  margin: 6px 0 0;
  color: var(--text-tertiary);
  line-height: 1.6;
  font-size: 14px;
}

/* ── Form ── */
.form-label {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: .01em;
}

.form-control,
.form-select {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--text);
  min-height: 44px;
  font-size: 14px;
  font-weight: 450;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.form-control::placeholder {
  color: var(--text-tertiary);
}

.mny-message {
  min-height: 140px;
  resize: vertical;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.btn:focus-visible,
a:focus-visible {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px var(--accent-glow);
  outline: none;
}

.mny-consent-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--accent-subtle);
  padding: 14px 16px;
}

.mny-consent-wrap .form-check-label {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

/* ── Buttons ── */
.mny-btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
}

.mny-btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  min-width: 140px;
  padding: 10px 24px;
  box-shadow: 0 1px 3px rgba(37, 99, 235, .3);
}

.mny-btn-primary:hover,
.mny-btn-primary:active {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, .35);
}

.mny-btn-outline {
  background: var(--white);
  border-color: var(--border);
  color: var(--text-secondary);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
}

.mny-btn-outline:hover,
.mny-btn-outline:active {
  background: var(--accent-subtle);
  border-color: var(--border-hover);
  color: var(--accent-dark);
}

/* ── Helpers / Status ── */
.mny-helper {
  margin: 0;
  color: var(--text-tertiary);
  font-size: 13px;
}

.mny-inline-warning {
  margin-top: 12px;
  margin-bottom: 0;
  border: 1px solid rgba(245, 158, 11, .25);
  background: rgba(245, 158, 11, .06);
  border-radius: var(--radius-xs);
  padding: 10px 14px;
  color: #92400e;
  font-size: 13px;
  font-weight: 500;
}

.mny-form-status {
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
}

.mny-form-status.is-success {
  background: rgba(16, 185, 129, .08);
  border-color: rgba(16, 185, 129, .20);
  color: #065f46;
}

.mny-form-status.is-error {
  background: rgba(239, 68, 68, .06);
  border-color: rgba(239, 68, 68, .18);
  color: #991b1b;
}

.mny-form-status.is-warning {
  background: rgba(245, 158, 11, .06);
  border-color: rgba(245, 158, 11, .20);
  color: #92400e;
}

/* ── Info Card ── */
.mny-info-row {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 16px;
}

.mny-info-row:first-of-type {
  border-top: 0;
  margin-top: 20px;
  padding-top: 0;
}

.mny-info-label {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 600;
}

.mny-info-value {
  margin: 0;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.65;
}

.mny-stack > * {
  display: block;
}

.mny-info-value-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color .15s ease;
}

.mny-info-value-link:hover {
  color: var(--accent);
}

.mny-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

/* ── Map ── */
.mny-map-frame {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.mny-map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.mny-map-standalone {
  border-radius: var(--radius);
  margin-top: 0;
}

/* ── Toast ── */
.mny-copy-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 10px 16px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(16, 185, 129, .25);
  background: rgba(16, 185, 129, .08);
  color: #065f46;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 1080;
}

.mny-copy-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ── Footer ── */
.mny-footer {
  text-align: center;
  padding: 32px 0 8px;
  border-top: 1px solid var(--border);
  color: var(--text-tertiary);
  font-size: 13px;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .mny-form-card,
  .mny-info-card,
  .mny-map-card {
    padding: 24px 20px;
  }

  .mny-hero {
    padding: 28px 24px;
  }
}

@media (max-width: 575.98px) {
  .mny-map-frame iframe {
    height: 220px;
  }

  .mny-btn-primary {
    width: 100%;
  }
}
